Uses of Interface
org.apache.openjpa.kernel.Seq

Packages that use Seq
org.apache.openjpa.abstractstore OpenJPA Abstract StoreManager Implementation 
org.apache.openjpa.conf OpenJPA Configuration 
org.apache.openjpa.kernel OpenJPA Runtime Kernel 
org.apache.openjpa.meta OpenJPA Metadata 
 

Uses of Seq in org.apache.openjpa.abstractstore
 

Methods in org.apache.openjpa.abstractstore that return Seq
 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
 Seq OpenJPAConfiguration.getSequenceInstance()
          The default system sequence.
 Seq OpenJPAConfigurationImpl.getSequenceInstance()
           
 

Methods in org.apache.openjpa.conf with parameters of type Seq
 void OpenJPAConfiguration.setSequence(Seq sequence)
          The default system sequence.
 void OpenJPAConfigurationImpl.setSequence(Seq seq)
           
 

Uses of Seq in org.apache.openjpa.kernel
 

Classes in org.apache.openjpa.kernel that implement Seq
 class DelegatingSeq
          Delegating sequence that can also perform exception translation for use in facades.
 class TimeSeededSeq
          A simplistic implementation of a Seq used to provide datastore ids.
 class UUIDHexSeq
          Sequence for generating 32-character hex UUID strings.
 class UUIDStringSeq
          Sequence for generating 16-character UUID strings.
 

Methods in org.apache.openjpa.kernel that return Seq
 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 a Seq 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 a Seq 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
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
 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.
 



Copyright © 2006 Apache Software Foundation. All Rights Reserved.