org.tigris.scarab.om
Class BaseGlobalParameter

java.lang.Object
  extended byorg.apache.torque.om.BaseObject
      extended byorg.tigris.scarab.om.BaseGlobalParameter
All Implemented Interfaces:
org.apache.torque.om.Persistent, org.apache.fulcrum.intake.Retrievable, java.io.Serializable
Direct Known Subclasses:
GlobalParameter

public abstract class BaseGlobalParameter
extends org.apache.torque.om.BaseObject
implements org.apache.fulcrum.intake.Retrievable

You should not use this class directly. It should not even be extended all references should be to GlobalParameter

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.apache.torque.om.BaseObject
NEW_ID
 
Constructor Summary
BaseGlobalParameter()
           
 
Method Summary
 GlobalParameter copy()
          Makes a copy of this object.
protected  GlobalParameter copyInto(GlobalParameter copyObj)
           
 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.
static java.util.List getFieldNames()
          Generate a list of field names.
 Module getModule()
          Returns the associated Module object.
 Module getModule(java.sql.Connection connection)
          Return the associated Module object If it was not retrieved before, the object is retrieved from the database using the passed connection
 java.lang.Integer getModuleId()
          Get the ModuleId
 java.lang.String getName()
          Get the Name
 java.lang.Integer getParameterId()
          Get the ParameterId
 GlobalParameterPeer getPeer()
          returns a peer instance associated with this om.
 org.apache.torque.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 getValue()
          Get the Value
protected  boolean isCacheOnSave()
          Specify whether to cache the object after saving to the db.
 void save()
          Stores the object in the database.
 void save(java.sql.Connection con)
          Stores the object in the database.
 void save(java.lang.String dbName)
          Stores the object in the database.
 void setModule(Module v)
          Declares an association between this object and a Module object
 void setModuleId(java.lang.Integer v)
          Set the value of ModuleId
 void setModuleKey(org.apache.torque.om.ObjectKey key)
          Provides convenient way to set a relationship based on a ObjectKey, for example bar.setFooKey(foo.getPrimaryKey())
 void setName(java.lang.String v)
          Set the value of Name
 void setParameterId(java.lang.Integer v)
          Set the value of ParameterId
 void setPrimaryKey(org.apache.torque.om.ObjectKey key)
          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 setValue(java.lang.String v)
          Set the value of Value
 java.lang.String toString()
           
 
Methods inherited from class org.apache.torque.om.BaseObject
equals, equals, getLog, hashCode, isModified, isNew, resetModified, setModified, setNew, setPrimaryKey
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BaseGlobalParameter

public BaseGlobalParameter()
Method Detail

getParameterId

public java.lang.Integer getParameterId()
Get the ParameterId

Returns:
Integer

setParameterId

public void setParameterId(java.lang.Integer v)
Set the value of ParameterId

Parameters:
v - new value

getName

public java.lang.String getName()
Get the Name

Returns:
String

setName

public void setName(java.lang.String v)
Set the value of Name

Parameters:
v - new value

getValue

public java.lang.String getValue()
Get the Value

Returns:
String

setValue

public void setValue(java.lang.String v)
Set the value of Value

Parameters:
v - new value

getModuleId

public java.lang.Integer getModuleId()
Get the ModuleId

Returns:
Integer

setModuleId

public void setModuleId(java.lang.Integer v)
                 throws org.apache.torque.TorqueException
Set the value of ModuleId

Parameters:
v - new value
Throws:
org.apache.torque.TorqueException

setModule

public void setModule(Module v)
               throws org.apache.torque.TorqueException
Declares an association between this object and a Module object

Parameters:
v - Module
Throws:
org.apache.torque.TorqueException

getModule

public Module getModule()
                 throws org.apache.torque.TorqueException
Returns the associated Module object. If it was not retrieved before, the object is retrieved from the database

Returns:
the associated Module object
Throws:
org.apache.torque.TorqueException

getModule

public Module getModule(java.sql.Connection connection)
                 throws org.apache.torque.TorqueException
Return the associated Module object If it was not retrieved before, the object is retrieved from the database using the passed connection

Parameters:
connection - the connection used to retrieve the associated object from the database, if it was not retrieved before
Returns:
the associated Module object
Throws:
org.apache.torque.TorqueException

setModuleKey

public void setModuleKey(org.apache.torque.om.ObjectKey key)
                  throws org.apache.torque.TorqueException
Provides convenient way to set a relationship based on a ObjectKey, for example bar.setFooKey(foo.getPrimaryKey())

Throws:
org.apache.torque.TorqueException

getFieldNames

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

Returns:
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.

Parameters:
name - field name
Returns:
value

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.

Parameters:
name - peer name
Returns:
value

getByPosition

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

Parameters:
pos - position in xml schema
Returns:
value

save

public void save()
          throws org.apache.torque.TorqueException
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.torque.om.Persistent
Throws:
org.apache.torque.TorqueException

save

public void save(java.lang.String dbName)
          throws org.apache.torque.TorqueException
Stores the object in the database. If the object is new, it inserts it; otherwise an update is performed. Note: this code is here because the method body is auto-generated conditionally and therefore needs to be in this file instead of in the super class, BaseObject.

Specified by:
save in interface org.apache.torque.om.Persistent
Parameters:
dbName -
Throws:
org.apache.torque.TorqueException

save

public void save(java.sql.Connection con)
          throws org.apache.torque.TorqueException
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

Specified by:
save in interface org.apache.torque.om.Persistent
Parameters:
con -
Throws:
org.apache.torque.TorqueException

isCacheOnSave

protected boolean isCacheOnSave()
Specify whether to cache the object after saving to the db. This method returns true


setPrimaryKey

public void setPrimaryKey(org.apache.torque.om.ObjectKey key)
Set the PrimaryKey using ObjectKey.

Specified by:
setPrimaryKey in interface org.apache.torque.om.Persistent
Parameters:
key - parameterId ObjectKey

setPrimaryKey

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

Specified by:
setPrimaryKey in interface org.apache.torque.om.Persistent
Parameters:
key -

getPrimaryKey

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

Specified by:
getPrimaryKey in interface org.apache.torque.om.Persistent

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.fulcrum.intake.Retrievable

setQueryKey

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

Specified by:
setQueryKey in interface org.apache.fulcrum.intake.Retrievable
Throws:
org.apache.torque.TorqueException

copy

public GlobalParameter copy()
                     throws org.apache.torque.TorqueException
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.

Throws:
org.apache.torque.TorqueException

copyInto

protected GlobalParameter copyInto(GlobalParameter copyObj)
                            throws org.apache.torque.TorqueException
Throws:
org.apache.torque.TorqueException

getPeer

public GlobalParameterPeer getPeer()
returns a peer instance associated with this om. Since Peer classes are not to have any instance attributes, this method returns the same instance for all member of this class. The method could therefore be static, but this would prevent one from overriding the behavior.


toString

public java.lang.String toString()


Copyright © 2000-2004 Tigris.org. All Rights Reserved.