Uses of Interface
org.apache.openjpa.kernel.Seq
-
Packages that use Seq Package Description org.apache.openjpa.abstractstore OpenJPA Abstract StoreManager Implementationorg.apache.openjpa.conf OpenJPA Configurationorg.apache.openjpa.jdbc.kernel OpenJPA-JDBC Runtime Kernelorg.apache.openjpa.kernel OpenJPA Runtime Kernelorg.apache.openjpa.meta OpenJPA Metadataorg.apache.openjpa.persistence OpenJPA JPA -
-
Uses of Seq in org.apache.openjpa.abstractstore
Methods in org.apache.openjpa.abstractstore that return Seq Modifier and Type Method Description Seq
AbstractStoreManager. getDataStoreIdSequence(ClassMetaData forClass)
Returns the system-configured sequence.Seq
AbstractStoreManager. getValueSequence(FieldMetaData forField)
Returns null. -
Uses of Seq in org.apache.openjpa.conf
Methods in org.apache.openjpa.conf that return Seq Modifier and Type Method Description Seq
OpenJPAConfiguration. getSequenceInstance()
The default system sequence.Seq
OpenJPAConfigurationImpl. getSequenceInstance()
Methods in org.apache.openjpa.conf with parameters of type Seq Modifier and Type Method Description void
OpenJPAConfiguration. setSequence(Seq sequence)
The default system sequence.void
OpenJPAConfigurationImpl. setSequence(Seq seq)
-
Uses of Seq in org.apache.openjpa.jdbc.kernel
Subinterfaces of Seq in org.apache.openjpa.jdbc.kernel Modifier and Type Interface Description interface
JDBCSeq
Specialization of the theSeq
interface to provide information on the schema needed by this sequence.Classes in org.apache.openjpa.jdbc.kernel that implement Seq Modifier and Type Class Description class
AbstractJDBCSeq
Abstract sequence implementation.class
ClassTableJDBCSeq
Specialization of theTableJDBCSeq
that maintains a separate sequence count per-class.class
NativeJDBCSeq
JDBCSeq
implementation that uses a database sequence to generate numbers.class
TableJDBCSeq
JDBCSeq
implementation that uses a database table for sequence number generation.class
ValueTableJDBCSeq
Specialization of theTableJDBCSeq
that maintains multiple sequence counts.Methods in org.apache.openjpa.jdbc.kernel that return Seq Modifier and Type Method Description Seq
JDBCStoreManager. getDataStoreIdSequence(ClassMetaData meta)
Seq
JDBCStoreManager. getValueSequence(FieldMetaData fmd)
-
Uses of Seq in org.apache.openjpa.kernel
Classes in org.apache.openjpa.kernel that implement Seq Modifier and Type Class Description class
DelegatingSeq
Delegating sequence that can also perform exception translation for use in facades.class
TimeSeededSeq
A simplistic implementation of aSeq
used to provide datastore ids.class
UUIDHexSeq
Sequence for generating 32-character hex UUID strings.class
UUIDStringSeq
Sequence for generating 16-character UUID strings.class
UUIDType4HexSeq
Sequence for generating 32-character hex Type 4 UUID strings.class
UUIDType4StringSeq
Sequence for generating 16-character UUID strings.Methods in org.apache.openjpa.kernel that return Seq Modifier and Type Method Description Seq
DelegatingStoreManager. getDataStoreIdSequence(ClassMetaData forClass)
Seq
StoreManager. getDataStoreIdSequence(ClassMetaData forClass)
Return a sequence that generates datastore identity values for the given class.Seq
DelegatingSeq. getDelegate()
Return the direct delegate.Seq
Broker. getIdentitySequence(ClassMetaData meta)
Returns aSeq
for the datastore identity values of the specified persistent class, or null if the class' identity cannot be represented as a sequence.Seq
BrokerImpl. getIdentitySequence(ClassMetaData meta)
Seq
DelegatingBroker. getIdentitySequence(ClassMetaData meta)
Seq
DelegatingSeq. getInnermostDelegate()
Return the native delegate.Seq
Broker. getValueSequence(FieldMetaData fmd)
Returns aSeq
for the generated values of the specified field, or null if the field is not generated.Seq
BrokerImpl. getValueSequence(FieldMetaData fmd)
Seq
DelegatingBroker. getValueSequence(FieldMetaData fmd)
Seq
DelegatingStoreManager. getValueSequence(FieldMetaData fmd)
Seq
StoreManager. getValueSequence(FieldMetaData forField)
Return a sequence that generates values for the given field.Constructors in org.apache.openjpa.kernel with parameters of type Seq Constructor Description DelegatingSeq(Seq seq)
Constructor; supply delegate.DelegatingSeq(Seq seq, RuntimeExceptionTranslator trans)
Constructor; supply delegate and exception translator. -
Uses of Seq in org.apache.openjpa.meta
Methods in org.apache.openjpa.meta that return Seq Modifier and Type Method Description Seq
SequenceMetaData. getInstance(java.lang.ClassLoader envLoader)
Return the initialized sequence instance.protected Seq
SequenceMetaData. instantiate(java.lang.ClassLoader envLoader)
Create a new uninitialized instance of this sequence.Seq
SequenceMetaData.SequenceFactory. toSequence(java.lang.Class cls, java.lang.String props)
Transform the given class named in metadata into a sequence. -
Uses of Seq in org.apache.openjpa.persistence
Methods in org.apache.openjpa.persistence that return Seq Modifier and Type Method Description Seq
Generator. getDelegate()
Deprecated.cast toGeneratorImpl
instead.Seq
GeneratorImpl. getDelegate()
Delegate.Constructors in org.apache.openjpa.persistence with parameters of type Seq Constructor Description GeneratorImpl(Seq seq, java.lang.String name, StoreContext ctx, ClassMetaData meta)
Constructor; supply delegate.
-