Package org.hibernate.id
Interface Configurable
-
- All Known Subinterfaces:
BulkInsertionCapableIdentifierGenerator
,IdentifierGenerator
,PersistentIdentifierGenerator
,PostInsertIdentifierGenerator
- All Known Implementing Classes:
AbstractPostInsertGenerator
,AbstractUUIDGenerator
,Assigned
,CompositeNestedGeneratedValueGenerator
,ForeignGenerator
,GUIDGenerator
,IdentityGenerator
,IncrementGenerator
,MultipleHiLoPerTableGenerator
,OrderedSequenceGenerator
,SelectGenerator
,SequenceGenerator
,SequenceHiLoGenerator
,SequenceIdentityGenerator
,SequenceStyleGenerator
,TableGenerator
,UUIDGenerator
,UUIDHexGenerator
@Deprecated public interface Configurable
Deprecated.All methods are already defined inIdentifierGenerator
. Just implementIdentifierGenerator
.AnIdentifierGenerator
that supports "configuration".- See Also:
IdentifierGenerator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
configure(Type type, java.util.Properties params, ServiceRegistry serviceRegistry)
Deprecated.Configure this instance, given the value of parameters specified by the user as <param> elements.
-
-
-
Method Detail
-
configure
void configure(Type type, java.util.Properties params, ServiceRegistry serviceRegistry) throws MappingException
Deprecated.Configure this instance, given the value of parameters specified by the user as <param> elements. This method is called just once, following instantiation.- Parameters:
type
- The id property type descriptorparams
- param values, keyed by parameter nameserviceRegistry
- Access to service that may be needed.- Throws:
MappingException
-
-