Uses of Interface
org.hibernate.id.Configurable
-
Packages that use Configurable Package Description org.hibernate.envers.enhanced org.hibernate.id This package contains the built-in id generators, all of which implementIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.id.enhanced Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configuration -
-
Uses of Configurable in org.hibernate.envers.enhanced
Classes in org.hibernate.envers.enhanced that implement Configurable Modifier and Type Class Description class
OrderedSequenceGenerator
Revision number generator has to produce values in ascending order (gaps may occur). -
Uses of Configurable in org.hibernate.id
Subinterfaces of Configurable in org.hibernate.id Modifier and Type Interface Description interface
IdentifierGenerator
A classic extension point from the very earliest days of Hibernate, this interface is no longer the only way to generate identifiers.interface
OptimizableGenerator
Commonality between sequence-based and table-based generatorsinterface
PersistentIdentifierGenerator
AnIdentifierGenerator
that requires creation of database objects.interface
PostInsertIdentifierGenerator
The counterpart toIdentifierGenerator
for values generated by the database.Classes in org.hibernate.id that implement Configurable Modifier and Type Class Description class
AbstractUUIDGenerator
The base class for identifier generators that use a UUID algorithm.class
Assigned
assignedclass
CompositeNestedGeneratedValueGenerator
For composite identifiers, defines a number of "nested" generations that need to happen to "fill" the identifier property(s).class
ForeignGenerator
foreignclass
GUIDGenerator
Deprecated.useUuidGenerator
class
IdentityGenerator
AnOnExecutionGenerator
that handlesIDENTITY
/"autoincrement" columns on those databases which support them.class
IncrementGenerator
incrementclass
SelectGenerator
A generator thatselect
s the just-insert
ed row to determine the column value assigned by the database.class
UUIDGenerator
Deprecated.useUuidGenerator
andUuidGenerator
insteadclass
UUIDHexGenerator
uuid -
Uses of Configurable in org.hibernate.id.enhanced
Classes in org.hibernate.id.enhanced that implement Configurable Modifier and Type Class Description class
SequenceStyleGenerator
Generates identifier values based on a sequence-style database structure.class
TableGenerator
An enhanced version of table-based id generation.
-