java.lang.Object
org.eclipse.persistence.sequencing.Sequence
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
DefaultSequence
,OIDSequence
,StandardSequence
,UUIDSequence
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:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
static boolean
equalNameAndSize
(Sequence seq1, Sequence seq2) INTERNAL: Used in equals.boolean
getGeneratedValue
(Accessor accessor, AbstractSession writeSession) INTERNAL: Return the newly-generated sequencing value.abstract Object
getGeneratedValue
(Accessor accessor, AbstractSession writeSession, String seqName) INTERNAL: Return the newly-generated sequencing value.Vector
<?> getGeneratedVector
(Accessor accessor, AbstractSession writeSession) INTERNAL: Return a Vector of newly-generated sequencing values.abstract Vector
<?> getGeneratedVector
(Accessor accessor, AbstractSession writeSession, String seqName, int size) INTERNAL: Return a Vector of newly-generated sequencing values.int
getName()
int
getQualified
(String str) INTERNAL:INTERNAL:int
hashCode()
boolean
PUBLIC: Indicates that Sequence is connected.boolean
INTERNAL:boolean
isNative()
boolean
isTable()
boolean
abstract void
INTERNAL: This method is called when Sequencing object is created.void
INTERNAL: This method is called when Sequencing object is created.abstract void
INTERNAL: This method is called when Sequencing object is destroyed.void
onDisconnect
(Platform platform) INTERNAL: This method is called when Sequencing object is destroyed.protected void
setDatasourcePlatform
(Platform platform) void
setInitialValue
(int initialValue) void
void
setPreallocationSize
(int size) void
setQualifier
(String qualifier) INTERNAL:void
setShouldAlwaysOverrideExistingValue
(boolean shouldAlwaysOverrideExistingValue) ADVANCED: Set that to true if the sequence should always override the existing pk value.abstract boolean
INTERNAL: Indicates whether sequencing value should be acquired after INSERT.boolean
INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence.boolean
shouldAlwaysOverrideExistingValue
(String seqName) INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence.boolean
INTERNAL: Indicates whether several sequencing values should be acquired at a time and be kept by TopLink.abstract boolean
INTERNAL: Indicates whether TopLink should internally call beginTransaction() before getGeneratedValue/Vector, and commitTransaction after.toString()
protected void
verifyPlatform
(Platform otherPlatform) INTERNAL: Make sure that the sequence is not used by more than one platform.
-
Field Details
-
name
-
size
protected int size -
platform
-
initialValue
protected int initialValue -
depth
protected int depth -
qualifier
-
isCustomQualifier
protected boolean isCustomQualifier -
shouldAlwaysOverrideExistingValue
protected boolean shouldAlwaysOverrideExistingValue
-
-
Constructor Details
-
Sequence
protected Sequence() -
Sequence
Create a new sequence with the name. -
Sequence
Create a new sequence with the name and sequence pre-allocation size. -
Sequence
-
-
Method Details
-
isNative
public boolean isNative() -
isTable
public boolean isTable() -
isUnaryTable
public boolean isUnaryTable() -
getName
-
setName
-
getPreallocationSize
public int getPreallocationSize() -
setPreallocationSize
public void setPreallocationSize(int size) -
getInitialValue
public int getInitialValue() -
setInitialValue
public void setInitialValue(int initialValue) -
clone
-
equals
-
equalNameAndSize
INTERNAL: Used in equals. -
hashCode
public int hashCode() -
setDatasourcePlatform
-
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(Accessor accessor, 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
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(Accessor accessor, 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
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
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
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. -
verifyPlatform
INTERNAL: Make sure that the sequence is not used by more than one platform. -
setQualifier
INTERNAL: -
isCustomQualifier
public boolean isCustomQualifier()INTERNAL: -
getQualifier
INTERNAL: -
getQualified
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
INTERNAL: Indicates whether the existing pk value should always be overridden by the sequence. -
toString
-