Uses of Interface
org.apache.openjpa.kernel.Seq
Package
Description
OpenJPA Abstract StoreManager Implementation
OpenJPA Configuration
OpenJPA-JDBC Runtime Kernel
OpenJPA Runtime Kernel
OpenJPA Metadata
OpenJPA JPA
-
Uses of Seq in org.apache.openjpa.abstractstore
Modifier and TypeMethodDescriptionAbstractStoreManager.getDataStoreIdSequence
(ClassMetaData forClass) Returns the system-configured sequence.AbstractStoreManager.getValueSequence
(FieldMetaData forField) Returns null. -
Uses of Seq in org.apache.openjpa.conf
Modifier and TypeMethodDescriptionOpenJPAConfiguration.getSequenceInstance()
The default system sequence.OpenJPAConfigurationImpl.getSequenceInstance()
Modifier and TypeMethodDescriptionvoid
OpenJPAConfiguration.setSequence
(Seq sequence) The default system sequence.void
OpenJPAConfigurationImpl.setSequence
(Seq seq) -
Uses of Seq in org.apache.openjpa.jdbc.kernel
Modifier and TypeInterfaceDescriptioninterface
Specialization of the theSeq
interface to provide information on the schema needed by this sequence.Modifier and TypeClassDescriptionclass
Abstract sequence implementation.class
Specialization of theTableJDBCSeq
that maintains a separate sequence count per-class.class
JDBCSeq
implementation that uses a database sequence to generate numbers.class
JDBCSeq
implementation that uses a database table for sequence number generation.class
Specialization of theTableJDBCSeq
that maintains multiple sequence counts.Modifier and TypeMethodDescriptionJDBCStoreManager.getDataStoreIdSequence
(ClassMetaData meta) JDBCStoreManager.getValueSequence
(FieldMetaData fmd) -
Uses of Seq in org.apache.openjpa.kernel
Modifier and TypeClassDescriptionclass
Delegating sequence that can also perform exception translation for use in facades.class
A simplistic implementation of aSeq
used to provide datastore ids.class
Sequence for generating 32-character hex UUID strings.class
Sequence for generating 16-character UUID strings.class
Sequence for generating 32-character hex Type 4 UUID strings.class
Sequence for generating 16-character UUID strings.Modifier and TypeMethodDescriptionDelegatingStoreManager.getDataStoreIdSequence
(ClassMetaData forClass) StoreManager.getDataStoreIdSequence
(ClassMetaData forClass) Return a sequence that generates datastore identity values for the given class.DelegatingSeq.getDelegate()
Return the direct delegate.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.BrokerImpl.getIdentitySequence
(ClassMetaData meta) DelegatingBroker.getIdentitySequence
(ClassMetaData meta) DelegatingSeq.getInnermostDelegate()
Return the native delegate.Broker.getValueSequence
(FieldMetaData fmd) Returns aSeq
for the generated values of the specified field, or null if the field is not generated.BrokerImpl.getValueSequence
(FieldMetaData fmd) DelegatingBroker.getValueSequence
(FieldMetaData fmd) DelegatingStoreManager.getValueSequence
(FieldMetaData fmd) StoreManager.getValueSequence
(FieldMetaData forField) Return a sequence that generates values for the given field.ModifierConstructorDescriptionDelegatingSeq
(Seq seq) Constructor; supply delegate.DelegatingSeq
(Seq seq, RuntimeExceptionTranslator trans) Constructor; supply delegate and exception translator. -
Uses of Seq in org.apache.openjpa.meta
Modifier and TypeMethodDescriptionSequenceMetaData.getInstance
(ClassLoader envLoader) Return the initialized sequence instance.protected Seq
SequenceMetaData.instantiate
(ClassLoader envLoader) Create a new uninitialized instance of this sequence.SequenceMetaData.SequenceFactory.toSequence
(Class cls, String props) Transform the given class named in metadata into a sequence. -
Uses of Seq in org.apache.openjpa.persistence
Modifier and TypeMethodDescriptionGenerator.getDelegate()
Deprecated.GeneratorImpl.getDelegate()
Delegate.ModifierConstructorDescriptionGeneratorImpl
(Seq seq, String name, StoreContext ctx, ClassMetaData meta) Constructor; supply delegate.
GeneratorImpl
instead.