Class Sequence
- java.lang.Object
-
- org.eclipse.persistence.sequencing.Sequence
-
- All Implemented Interfaces:
Serializable,Cloneable
- Direct Known Subclasses:
DefaultSequence,StandardSequence,UUIDSequence
public abstract class Sequence extends Object implements Serializable, Cloneable
Purpose: Abstract class to define sequencing.
Description A sequence defines how generated ids are obtained. The main sequence types are TableSequence and NativeSequence. Descriptors using sequencing will use the sequence object defined in their session's DatabaseLogin with the name matching their sequence name. If a specific sequence is not defined for the name the DatabaseLogin's default sequence will be used.
- See Also:
TableSequence,NativeSequence, Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Objectclone()static booleanequalNameAndSize(Sequence seq1, Sequence seq2)INTERNAL: Used in equals.booleanequals(Object obj)org.eclipse.persistence.internal.databaseaccess.PlatformgetDatasourcePlatform()ObjectgetGeneratedValue(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession)INTERNAL: Return the newly-generated sequencing value.abstract ObjectgetGeneratedValue(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession, String seqName)INTERNAL: Return the newly-generated sequencing value.VectorgetGeneratedVector(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession)INTERNAL: Return a Vector of newly-generated sequencing values.abstract VectorgetGeneratedVector(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession, String seqName, int size)INTERNAL: Return a Vector of newly-generated sequencing values.intgetInitialValue()StringgetName()intgetPreallocationSize()StringgetQualified(String str)INTERNAL:StringgetQualifier()INTERNAL:booleanisConnected()PUBLIC: Indicates that Sequence is connected.booleanisCustomQualifier()INTERNAL:booleanisNative()booleanisTable()booleanisUnaryTable()abstract voidonConnect()INTERNAL: This method is called when Sequencing object is created.voidonConnect(org.eclipse.persistence.internal.databaseaccess.Platform platform)INTERNAL: This method is called when Sequencing object is created.abstract voidonDisconnect()INTERNAL: This method is called when Sequencing object is destroyed.voidonDisconnect(org.eclipse.persistence.internal.databaseaccess.Platform platform)INTERNAL: This method is called when Sequencing object is destroyed.voidsetInitialValue(int initialValue)voidsetName(String name)voidsetPreallocationSize(int size)voidsetQualifier(String qualifier)INTERNAL:voidsetShouldAlwaysOverrideExistingValue(boolean shouldAlwaysOverrideExistingValue)ADVANCED: Set that to true if the sequence should always override the existing pk value.abstract booleanshouldAcquireValueAfterInsert()INTERNAL: Indicates whether sequencing value should be acquired after INSERT.booleanshouldAlwaysOverrideExistingValue()INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence.booleanshouldAlwaysOverrideExistingValue(String seqName)INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence.booleanshouldUsePreallocation()INTERNAL: Indicates whether several sequencing values should be acquired at a time and be kept by TopLink.abstract booleanshouldUseTransaction()INTERNAL: Indicates whether TopLink should internally call beginTransaction() before getGeneratedValue/Vector, and commitTransaction after.StringtoString()
-
-
-
Constructor Detail
-
Sequence
public Sequence()
-
Sequence
public Sequence(String name)
Create a new sequence with the name.
-
Sequence
public Sequence(String name, int size)
Create a new sequence with the name and sequence pre-allocation size.
-
Sequence
public Sequence(String name, int size, int initialValue)
-
-
Method Detail
-
isNative
public boolean isNative()
-
isTable
public boolean isTable()
-
isUnaryTable
public boolean isUnaryTable()
-
getName
public String getName()
-
setName
public void setName(String name)
-
getPreallocationSize
public int getPreallocationSize()
-
setPreallocationSize
public void setPreallocationSize(int size)
-
getInitialValue
public int getInitialValue()
-
setInitialValue
public void setInitialValue(int initialValue)
-
clone
public Object clone()
-
equalNameAndSize
public static boolean equalNameAndSize(Sequence seq1, Sequence seq2)
INTERNAL: Used in equals.
-
getDatasourcePlatform
public org.eclipse.persistence.internal.databaseaccess.Platform getDatasourcePlatform()
-
shouldAcquireValueAfterInsert
public abstract boolean shouldAcquireValueAfterInsert()
INTERNAL: Indicates whether sequencing value should be acquired after INSERT. Note that preallocation could be used only in case sequencing values should be acquired before insert (this method returns false). In default implementation, it is true for table sequencing and native sequencing on Oracle platform, false for native sequencing on other platforms.
-
shouldUsePreallocation
public boolean shouldUsePreallocation()
INTERNAL: Indicates whether several sequencing values should be acquired at a time and be kept by TopLink. This in only possible in case sequencing numbers should be acquired before insert (shouldAcquireValueAfterInsert()==false). In default implementation, it is true for table sequencing and native sequencing on Oracle platform, false for native sequencing on other platforms.
-
shouldUseTransaction
public abstract boolean shouldUseTransaction()
INTERNAL: Indicates whether TopLink should internally call beginTransaction() before getGeneratedValue/Vector, and commitTransaction after. In default implementation, it is true for table sequencing and false for native sequencing.
-
getGeneratedValue
public abstract Object getGeneratedValue(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession, String seqName)
INTERNAL: Return the newly-generated sequencing value. Used only in case preallocation is not used (shouldUsePreallocation()==false). Accessor may be non-null only in case shouldUseSeparateConnection()==true. Even in this case accessor could be null - if SequencingControl().shouldUseSeparateConnection()==false; Therefore in case shouldUseSeparateConnection()==true, implementation should handle both cases: use a separate connection if provided (accessor != null), or get by without it (accessor == null).- Parameters:
accessor- Accessor is a separate sequencing accessor (may be null);writeSession- Session is a Session used for writing (either ClientSession or DatabaseSession);seqName- String is sequencing number field name
-
getGeneratedValue
public Object getGeneratedValue(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession)
INTERNAL: Return the newly-generated sequencing value. Used only in case preallocation is not used (shouldUsePreallocation()==false). Accessor may be non-null only in case shouldUseSeparateConnection()==true. Even in this case accessor could be null - if SequencingControl().shouldUseSeparateConnection()==false; Therefore in case shouldUseSeparateConnection()==true, implementation should handle both cases: use a separate connection if provided (accessor != null), or get by without it (accessor == null).- Parameters:
accessor- Accessor is a separate sequencing accessor (may be null);writeSession- Session is a Session used for writing (either ClientSession or DatabaseSession);
-
getGeneratedVector
public abstract Vector getGeneratedVector(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession, String seqName, int size)
INTERNAL: Return a Vector of newly-generated sequencing values. Used only in case preallocation is used (shouldUsePreallocation()==true). Accessor may be non-null only in case shouldUseSeparateConnection()==true. Even in this case accessor could be null - if SequencingControl().shouldUseSeparateConnection()==false; Therefore in case shouldUseSeparateConnection()==true, implementation should handle both cases: use a separate connection if provided (accessor != null), or get by without it (accessor == null).- Parameters:
accessor- Accessor is a separate sequencing accessor (may be null);writeSession- Session is a Session used for writing (either ClientSession or DatabaseSession);seqName- String is sequencing number field namesize- int number of values to preallocate (output Vector size).
-
getGeneratedVector
public Vector getGeneratedVector(org.eclipse.persistence.internal.databaseaccess.Accessor accessor, org.eclipse.persistence.internal.sessions.AbstractSession writeSession)
INTERNAL: Return a Vector of newly-generated sequencing values. Used only in case preallocation is used (shouldUsePreallocation()==true). Accessor may be non-null only in case shouldUseSeparateConnection()==true. Even in this case accessor could be null - if SequencingControl().shouldUseSeparateConnection()==false; Therefore in case shouldUseSeparateConnection()==true, implementation should handle both cases: use a separate connection if provided (accessor != null), or get by without it (accessor == null).- Parameters:
accessor- Accessor is a separate sequencing accessor (may be null);writeSession- Session is a Session used for writing (either ClientSession or DatabaseSession);
-
onConnect
public void onConnect(org.eclipse.persistence.internal.databaseaccess.Platform platform)
INTERNAL: This method is called when Sequencing object is created. Don't override this method.
-
onConnect
public abstract void onConnect()
INTERNAL: This method is called when Sequencing object is created. If it requires initialization, subclass should override this method.
-
onDisconnect
public void onDisconnect(org.eclipse.persistence.internal.databaseaccess.Platform platform)
INTERNAL: This method is called when Sequencing object is destroyed. Don't override this method.
-
onDisconnect
public abstract void onDisconnect()
INTERNAL: This method is called when Sequencing object is destroyed. If it requires deinitialization, subclass should override this method.
-
isConnected
public boolean isConnected()
PUBLIC: Indicates that Sequence is connected.
-
setQualifier
public void setQualifier(String qualifier)
INTERNAL:
-
isCustomQualifier
public boolean isCustomQualifier()
INTERNAL:
-
getQualifier
public String getQualifier()
INTERNAL:
-
setShouldAlwaysOverrideExistingValue
public void setShouldAlwaysOverrideExistingValue(boolean shouldAlwaysOverrideExistingValue)
ADVANCED: Set that to true if the sequence should always override the existing pk value.
-
shouldAlwaysOverrideExistingValue
public boolean shouldAlwaysOverrideExistingValue()
INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence. As always the version of the method taking seqName is provided for the benefit of DefaultSequence.
-
shouldAlwaysOverrideExistingValue
public boolean shouldAlwaysOverrideExistingValue(String seqName)
INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence.
-
-