|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.torque.util.BasePeer | +--org.apache.jetspeed.om.registry.database.BaseJetspeedSkinParameterPeer
Base Peer for Skin Parameter registry entries.
Field Summary | |
protected static java.lang.Class |
CLASS_DEFAULT
A class that can be returned by this peer. |
protected static java.lang.String |
CLASSNAME_DEFAULT
A class that can be returned by this peer. |
static java.lang.String |
DATABASE_NAME
the default database name for this class |
static java.lang.String |
DESCRIPTION
the column name for the DESCRIPTION field |
static java.lang.String |
HIDDEN
the column name for the HIDDEN field |
static java.lang.String |
ID
the column name for the PORTAL_ID field |
static java.lang.String |
IMAGE
the column name for the IMAGE field |
protected static org.apache.jetspeed.services.logging.JetspeedLogger |
logger
Static initialization of the logger for this class |
static java.lang.String |
NAME
the column name for the NAME field |
static int |
numColumns
number of columns for this peer |
static java.lang.String |
ROLE
the column name for the role field |
static java.lang.String |
SKIN_ID
the portlet id for this parameter |
static java.lang.String |
TABLE_NAME
the table name for this class |
static java.lang.String |
TITLE
the column name for the TITLE field |
static java.lang.String |
TYPE
the column name for the TYPE field |
static java.lang.String |
VALUE
the column name for the NAME field |
Fields inherited from class org.apache.torque.util.BasePeer |
DEFAULT_MAP_BUILDER, IGNORE_CASE, log, ORDER_BY |
Constructor Summary | |
BaseJetspeedSkinParameterPeer()
|
Method Summary | |
static void |
addSelectColumns(org.apache.torque.util.Criteria criteria)
Add all the columns needed to create a new object. |
static org.apache.torque.util.Criteria |
buildCriteria(org.apache.jetspeed.om.registry.base.BaseSkinEntry obj)
Build a Criteria object from the data object for this peer |
static org.apache.torque.util.Criteria |
buildCriteria(org.apache.torque.om.ObjectKey pk)
Build a Criteria object from an ObjectKey |
static java.util.List |
doSelect(org.apache.jetspeed.om.registry.base.BaseSkinEntry obj)
Method to do selects |
static java.util.List |
doSelect(org.apache.torque.util.Criteria criteria)
Method to do selects. |
static java.util.List |
doSelect(org.apache.torque.util.Criteria criteria,
java.sql.Connection con)
Method to do selects within a transaction. |
static java.util.List |
doSelectVillageRecords(org.apache.torque.util.Criteria criteria)
Grabs the raw Village records to be formed into objects. |
static java.util.List |
doSelectVillageRecords(org.apache.torque.util.Criteria criteria,
java.sql.Connection con)
Grabs the raw Village records to be formed into objects. |
static java.lang.Class |
getOMClass()
The class that the Peer will make instances of. |
static void |
populateObject(com.workingdogs.village.Record row,
int offset,
org.apache.jetspeed.om.registry.Parameter obj)
Populates an object from a resultset row starting from a specified offset. |
static java.util.List |
populateObjects(java.util.List records)
The returned List will contain objects of the default type or objects that inherit from the default. |
static java.util.List |
resultSet2Objects(java.sql.ResultSet results)
Get the list of objects for a ResultSet. |
static java.util.List |
retrieveById(int pk)
Retrieve a listt by portlet id |
static java.util.List |
retrieveById(org.apache.torque.om.ObjectKey pk)
Retrieve a list of objects by id |
static java.util.List |
retrieveById(org.apache.torque.om.ObjectKey pk,
java.sql.Connection con)
Retrieve a single object by pk |
static org.apache.jetspeed.om.registry.Parameter |
retrieveByPK(int pk)
Retrieve a single object by pk |
static org.apache.jetspeed.om.registry.Parameter |
retrieveByPK(org.apache.torque.om.ObjectKey pk)
Retrieve a single object by pk |
static org.apache.jetspeed.om.registry.Parameter |
retrieveByPK(org.apache.torque.om.ObjectKey pk,
java.sql.Connection con)
Retrieve a single object by pk |
static java.util.List |
retrieveByPKs(java.util.List pks)
Retrieve a multiple objects by pk |
static java.util.List |
retrieveByPKs(java.util.List pks,
java.sql.Connection dbcon)
Retrieve a multiple objects by pk |
static org.apache.jetspeed.om.registry.Parameter |
row2Object(com.workingdogs.village.Record row,
int offset,
java.lang.Class cls)
Create a new object of type cls from a resultset row starting from a specified offset. |
Methods inherited from class org.apache.torque.util.BasePeer |
createPreparedStatement, createQueryString, deleteAll, deleteAll, doDelete, doDelete, doInsert, doInsert, doPSSelect, doPSSelect, doUpdate, doUpdate, doUpdate, doUpdate, executeQuery, executeQuery, executeQuery, executeQuery, executeQuery, executeQuery, executeStatement, executeStatement, executeStatement, getMapBuilder, getMapBuilder, getSelectResults, getSelectResults, getSelectResults, getSelectResults, handleMultipleRecords, hashtableToByteArray, initColumnNames, initCriteriaKeys, initTableColumns, initTableSchema, initTableSchema |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static final org.apache.jetspeed.services.logging.JetspeedLogger logger
public static final java.lang.String DATABASE_NAME
public static final java.lang.String TABLE_NAME
public static final java.lang.String ID
public static final java.lang.String NAME
public static final java.lang.String VALUE
public static final java.lang.String HIDDEN
public static final java.lang.String TYPE
public static final java.lang.String ROLE
public static final java.lang.String TITLE
public static final java.lang.String DESCRIPTION
public static final java.lang.String IMAGE
public static final java.lang.String SKIN_ID
public static final int numColumns
protected static final java.lang.String CLASSNAME_DEFAULT
protected static final java.lang.Class CLASS_DEFAULT
Constructor Detail |
public BaseJetspeedSkinParameterPeer()
Method Detail |
public static java.util.List resultSet2Objects(java.sql.ResultSet results) throws org.apache.torque.TorqueException
results
- the ResultSet
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static void addSelectColumns(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- object containing the columns to add.
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static org.apache.jetspeed.om.registry.Parameter row2Object(com.workingdogs.village.Record row, int offset, java.lang.Class cls) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static void populateObject(com.workingdogs.village.Record row, int offset, org.apache.jetspeed.om.registry.Parameter obj) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List doSelect(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- object used to create the SELECT statement.
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List doSelect(org.apache.torque.util.Criteria criteria, java.sql.Connection con) throws org.apache.torque.TorqueException
criteria
- object used to create the SELECT statement.con
- the connection to use
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List doSelectVillageRecords(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List doSelectVillageRecords(org.apache.torque.util.Criteria criteria, java.sql.Connection con) throws org.apache.torque.TorqueException
con
- the connection to use
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List populateObjects(java.util.List records) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.lang.Class getOMClass() throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List doSelect(org.apache.jetspeed.om.registry.base.BaseSkinEntry obj) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static org.apache.torque.util.Criteria buildCriteria(org.apache.torque.om.ObjectKey pk)
public static org.apache.torque.util.Criteria buildCriteria(org.apache.jetspeed.om.registry.base.BaseSkinEntry obj)
public static org.apache.jetspeed.om.registry.Parameter retrieveByPK(int pk) throws org.apache.torque.TorqueException
pk
- the primary key
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static org.apache.jetspeed.om.registry.Parameter retrieveByPK(org.apache.torque.om.ObjectKey pk) throws org.apache.torque.TorqueException
pk
- the primary key
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static org.apache.jetspeed.om.registry.Parameter retrieveByPK(org.apache.torque.om.ObjectKey pk, java.sql.Connection con) throws org.apache.torque.TorqueException
pk
- the primary keycon
- the connection to use
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List retrieveByPKs(java.util.List pks) throws org.apache.torque.TorqueException
pks
- List of primary keys
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List retrieveByPKs(java.util.List pks, java.sql.Connection dbcon) throws org.apache.torque.TorqueException
pks
- List of primary keysdbcon
- the connection to use
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List retrieveById(int pk) throws org.apache.torque.TorqueException
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List retrieveById(org.apache.torque.om.ObjectKey pk) throws org.apache.torque.TorqueException
pk
- the portlet id
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.public static java.util.List retrieveById(org.apache.torque.om.ObjectKey pk, java.sql.Connection con) throws org.apache.torque.TorqueException
pk
- the primary keycon
- the connection to use
org.apache.torque.TorqueException
- Any exceptions caught during processing will be
rethrown wrapped into a TorqueException.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |