| org.apache.cocoon.ojb.odmg.components.ODMG
All known Subclasses: org.apache.cocoon.ojb.odmg.components.ODMGImpl,
ODMG | public interface ODMG extends Component(Code) | | Interface component to the ODMG Implementation. It is used to get
the ODMG Implementation object to interact with object database
through ODMG API.
author: Giacomo Pati version: CVS $Id: ODMG.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
Implementation | getInstance() Get a ODMG Instance with default settings. | Implementation | getInstance(String connection) Get a ODMG Instance with a specific connection definition. | Implementation | getInstance(String connection, int mode) Get a ODMG Instance with a specific connection definition and a Database operation mode. | Implementation | getInstance(int mode) Get a ODMG Instance with a default connection definition and a Database operation mode. |
getInstance | Implementation getInstance() throws ODMGException(Code) | | Get a ODMG Instance with default settings.
a ODMG Implementation Object throws: ODMGException - DOCUMENT ME! |
getInstance | Implementation getInstance(String connection) throws ODMGException(Code) | | Get a ODMG Instance with a specific connection definition.
Parameters: connection - The connection name to be used (OJB specific connection name) a ODMG Implementation Object throws: ODMGException - DOCUMENT ME! |
getInstance | Implementation getInstance(String connection, int mode) throws ODMGException(Code) | | Get a ODMG Instance with a specific connection definition and a Database operation mode.
Parameters: connection - The connection name to be used (OJB specific connection name) Parameters: mode - The Database operation mode a ODMG Implementation Object throws: ODMGException - DOCUMENT ME! |
getInstance | Implementation getInstance(int mode) throws ODMGException(Code) | | Get a ODMG Instance with a default connection definition and a Database operation mode.
Parameters: mode - The Database operation mode a ODMG Implementation Object throws: ODMGException - DOCUMENT ME! |
|
|