|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use PoidGenerator | |
org.jpox | This package provides classes that are typically client-facing. |
org.jpox.store.poid | POID - Persistent Id Generation. |
org.jpox.store.rdbms.poid | Package providing a series of identity generators for use in RDBMS datastores. |
Uses of PoidGenerator in org.jpox |
Fields in org.jpox declared as PoidGenerator | |
protected PoidGenerator |
SequenceImpl.generator
The generator for the sequence. |
Uses of PoidGenerator in org.jpox.store.poid |
Classes in org.jpox.store.poid that implement PoidGenerator | |
class |
AbstractDatastorePoidGenerator
Abstract representation of a PoidGenerator for a datastore. |
class |
AbstractPoidGenerator
Abstract POID generator. |
class |
AbstractUIDPoidGenerator
Poid generator for a UID format. |
class |
AbstractUUIDPoidGenerator
Poid generator for a UUID format. |
class |
AUIDPoidGenerator
This generator uses a Java implementation of DCE UUIDs to create unique identifiers without the overhead of additional database transactions or even an open database connection. |
class |
UUIDHexPoidGenerator
Poid generator for a UUID hexadecimal format. |
class |
UUIDStringPoidGenerator
Poid generator for a UUID String format. |
Methods in org.jpox.store.poid that return PoidGenerator | |
PoidGenerator |
PoidManager.getPoidGenerator(java.lang.String name)
Accessor for the PoidGenerator with the given symbolic name. |
PoidGenerator |
PoidManager.createPoidGenerator(ClassLoaderResolver clr,
java.lang.String name,
java.lang.String generatorClassName,
java.util.Properties props)
Method to create a PoidGenerator. |
PoidGenerator |
PoidManager.createPoidGenerator(ClassLoaderResolver clr,
java.lang.String name,
java.lang.String generatorClassName,
java.util.Properties props,
StoreManager storeMgr,
PoidConnectionProvider connectionProvider)
Method to create a PoidGenerator when the generator is datastore based. |
Uses of PoidGenerator in org.jpox.store.rdbms.poid |
Classes in org.jpox.store.rdbms.poid that implement PoidGenerator | |
class |
AbstractRDBMSPoidGenerator
Abstract representation of a PoidGenerator for RDBMS datastores. |
class |
DatastoreUUIDHexPoidGenerator
Generator for POIDs using datastore-based UUID generation. |
class |
MaxPoidGenerator
This generator for Relational Databases uses the "select max(column) from table" strategy. |
class |
SequencePoidGenerator
This generator Sequence uses the "select |
class |
SequenceTablePoidGenerator
Identity generator for RDBMS databases that generates ids using a sequence table in the database. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |