org.openprivacy.reptile.om
Class BaseTaskLog

java.lang.Object
  |
  +--org.apache.turbine.om.BaseObject
        |
        +--org.openprivacy.reptile.om.BaseTaskLog
All Implemented Interfaces:
org.apache.turbine.om.Persistent, org.apache.turbine.om.Retrievable, java.io.Serializable
Direct Known Subclasses:
TaskLog

public abstract class BaseTaskLog
extends org.apache.turbine.om.BaseObject
implements org.apache.turbine.om.Retrievable

This class was autogenerated by Torque on: [Mon Jul 01 17:54:11 PDT 2002] You should not use this class directly. It should not even be extended all references should be to TaskLog

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.apache.turbine.om.BaseObject
NEW_ID
 
Constructor Summary
BaseTaskLog()
           
 
Method Summary
 TaskLog copy()
          Makes a copy of this object.
 java.lang.Object getByName(java.lang.String name)
          Retrieves a field from the object by name passed in as a String.
 java.lang.Object getByPeerName(java.lang.String name)
          Retrieves a field from the object by name passed in as a String.
 java.lang.Object getByPosition(int pos)
          Retrieves a field from the object by Position as specified in the xml schema.
 long getDate()
          Get the Date
 java.lang.String getExceptionClassname()
          Get the ExceptionClassname
 java.lang.String getExceptionStacktrace()
          Get the ExceptionStacktrace
static java.util.List getFieldNames()
          Generate a list of field names.
 org.apache.turbine.om.NumberKey getId()
          Get the Id
 java.lang.String getIdentifier()
          Get the Identifier
 java.lang.String getMessage()
          Get the Message
 org.apache.turbine.om.ObjectKey getPrimaryKey()
          returns an id that differentiates this object from others of its class.
 java.lang.String getQueryKey()
          get an id that differentiates this object from others of its class.
 java.lang.String getStatus()
          Get the Status
 java.lang.String getTask()
          Get the Task
 void save()
          Stores the object in the database.
 void save(org.apache.turbine.util.db.pool.DBConnection dbCon)
          Stores the object in the database.
 void save(java.lang.String dbName)
          Stores the object in the database.
 void setDate(long v)
          Set the value of Date
 void setExceptionClassname(java.lang.String v)
          Set the value of ExceptionClassname
 void setExceptionStacktrace(java.lang.String v)
          Set the value of ExceptionStacktrace
 void setId(org.apache.turbine.om.NumberKey v)
          Set the value of Id
 void setId(java.lang.String v)
          Set the value of Id as a string.
 void setIdentifier(java.lang.String v)
          Set the value of Identifier
 void setMessage(java.lang.String v)
          Set the value of Message
 void setPrimaryKey(org.apache.turbine.om.ObjectKey id)
          Set the PrimaryKey using ObjectKey.
 void setPrimaryKey(java.lang.String key)
          Set the PrimaryKey using a String.
 void setQueryKey(java.lang.String key)
          set an id that differentiates this object from others of its class.
 void setStatus(java.lang.String v)
          Set the value of Status
 void setTask(java.lang.String v)
          Set the value of Task
 
Methods inherited from class org.apache.turbine.om.BaseObject
equals, equals, getPrimaryKeyAsBigDecimal, getPrimaryKeyAsInt, getPrimaryKeyAsLong, getPrimaryKeyAsString, hashCode, isModified, isNew, resetModified, setModified, setNew, setPrimaryKey, setPrimaryKey, setPrimaryKey
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BaseTaskLog

public BaseTaskLog()
Method Detail

getId

public org.apache.turbine.om.NumberKey getId()
Get the Id

Returns:
NumberKey

setId

public void setId(org.apache.turbine.om.NumberKey v)
Set the value of Id


setId

public void setId(java.lang.String v)
Set the value of Id as a string.


getIdentifier

public java.lang.String getIdentifier()
Get the Identifier

Returns:
String

setIdentifier

public void setIdentifier(java.lang.String v)
Set the value of Identifier


getStatus

public java.lang.String getStatus()
Get the Status

Returns:
String

setStatus

public void setStatus(java.lang.String v)
Set the value of Status


getTask

public java.lang.String getTask()
Get the Task

Returns:
String

setTask

public void setTask(java.lang.String v)
Set the value of Task


getDate

public long getDate()
Get the Date

Returns:
long

setDate

public void setDate(long v)
Set the value of Date


getMessage

public java.lang.String getMessage()
Get the Message

Returns:
String

setMessage

public void setMessage(java.lang.String v)
Set the value of Message


getExceptionClassname

public java.lang.String getExceptionClassname()
Get the ExceptionClassname

Returns:
String

setExceptionClassname

public void setExceptionClassname(java.lang.String v)
Set the value of ExceptionClassname


getExceptionStacktrace

public java.lang.String getExceptionStacktrace()
Get the ExceptionStacktrace

Returns:
String

setExceptionStacktrace

public void setExceptionStacktrace(java.lang.String v)
Set the value of ExceptionStacktrace


getFieldNames

public static java.util.List getFieldNames()
Generate a list of field names.


getByName

public java.lang.Object getByName(java.lang.String name)
Retrieves a field from the object by name passed in as a String.

Overrides:
getByName in class org.apache.turbine.om.BaseObject

getByPeerName

public java.lang.Object getByPeerName(java.lang.String name)
Retrieves a field from the object by name passed in as a String. The String must be one of the static Strings defined in this Class' Peer.

Overrides:
getByPeerName in class org.apache.turbine.om.BaseObject

getByPosition

public java.lang.Object getByPosition(int pos)
Retrieves a field from the object by Position as specified in the xml schema. Zero-based.

Overrides:
getByPosition in class org.apache.turbine.om.BaseObject

save

public void save()
          throws java.lang.Exception
Stores the object in the database. If the object is new, it inserts it; otherwise an update is performed.

Specified by:
save in interface org.apache.turbine.om.Persistent
Overrides:
save in class org.apache.turbine.om.BaseObject
java.lang.Exception

save

public void save(java.lang.String dbName)
          throws java.lang.Exception
Stores the object in the database. If the object is new, it inserts it; otherwise an update is performed.

java.lang.Exception

save

public void save(org.apache.turbine.util.db.pool.DBConnection dbCon)
          throws java.lang.Exception
Stores the object in the database. If the object is new, it inserts it; otherwise an update is performed. This method is meant to be used as part of a transaction, otherwise use the save() method and the connection details will be handled internally

java.lang.Exception

setPrimaryKey

public void setPrimaryKey(org.apache.turbine.om.ObjectKey id)
Set the PrimaryKey using ObjectKey.

Specified by:
setPrimaryKey in interface org.apache.turbine.om.Persistent
Overrides:
setPrimaryKey in class org.apache.turbine.om.BaseObject

setPrimaryKey

public void setPrimaryKey(java.lang.String key)
Set the PrimaryKey using a String.

Specified by:
setPrimaryKey in interface org.apache.turbine.om.Persistent
Overrides:
setPrimaryKey in class org.apache.turbine.om.BaseObject

getPrimaryKey

public org.apache.turbine.om.ObjectKey getPrimaryKey()
returns an id that differentiates this object from others of its class.

Specified by:
getPrimaryKey in interface org.apache.turbine.om.Persistent
Overrides:
getPrimaryKey in class org.apache.turbine.om.BaseObject

getQueryKey

public java.lang.String getQueryKey()
get an id that differentiates this object from others of its class.

Specified by:
getQueryKey in interface org.apache.turbine.om.Retrievable

setQueryKey

public void setQueryKey(java.lang.String key)
                 throws java.lang.Exception
set an id that differentiates this object from others of its class.

Specified by:
setQueryKey in interface org.apache.turbine.om.Retrievable
java.lang.Exception

copy

public TaskLog copy()
             throws java.lang.Exception
Makes a copy of this object. It creates a new object filling in the simple attributes. It then fills all the association collections and sets the related objects to isNew=true.

java.lang.Exception