Uses of Interface
org.apache.openjpa.kernel.Seq
Packages that use 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
Methods in org.apache.openjpa.abstractstore that return SeqModifier and TypeMethodDescriptionAbstractStoreManager.getDataStoreIdSequence
(ClassMetaData forClass) Returns the system-configured sequence.AbstractStoreManager.getValueSequence
(FieldMetaData forField) Returns null. -
Uses of Seq in org.apache.openjpa.conf
Methods in org.apache.openjpa.conf that return SeqModifier and TypeMethodDescriptionOpenJPAConfiguration.getSequenceInstance()
The default system sequence.OpenJPAConfigurationImpl.getSequenceInstance()
Methods in org.apache.openjpa.conf with parameters of type SeqModifier and TypeMethodDescriptionvoid
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.kernelModifier and TypeInterfaceDescriptioninterface
Specialization of the theSeq
interface to provide information on the schema needed by this sequence.Classes in org.apache.openjpa.jdbc.kernel that implement SeqModifier 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.Methods in org.apache.openjpa.jdbc.kernel that return SeqModifier and TypeMethodDescriptionJDBCStoreManager.getDataStoreIdSequence
(ClassMetaData meta) JDBCStoreManager.getValueSequence
(FieldMetaData fmd) -
Uses of Seq in org.apache.openjpa.kernel
Classes in org.apache.openjpa.kernel that implement SeqModifier 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.Methods in org.apache.openjpa.kernel that return SeqModifier 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.Constructors in org.apache.openjpa.kernel with parameters of type SeqModifierConstructorDescriptionDelegatingSeq
(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 SeqModifier 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
Methods in org.apache.openjpa.persistence that return SeqModifier and TypeMethodDescriptionGenerator.getDelegate()
Deprecated.GeneratorImpl.getDelegate()
Delegate.Constructors in org.apache.openjpa.persistence with parameters of type SeqModifierConstructorDescriptionGeneratorImpl
(Seq seq, String name, StoreContext ctx, ClassMetaData meta) Constructor; supply delegate.
GeneratorImpl
instead.