Package org.hibernate.id
Interface CompositeNestedGeneratedValueGenerator.GenerationPlan
-
- All Superinterfaces:
ExportableProducer
- All Known Implementing Classes:
Component.ValueGenerationPlan
- Enclosing class:
- CompositeNestedGeneratedValueGenerator
public static interface CompositeNestedGeneratedValueGenerator.GenerationPlan extends ExportableProducer
Contract for performing the actual sub-value generation, usually injecting it into the determinedcontext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(SharedSessionContractImplementor session, java.lang.Object incomingObject, java.lang.Object injectionContext)
Execute the value generation.-
Methods inherited from interface org.hibernate.boot.model.relational.ExportableProducer
registerExportables
-
-
-
-
Method Detail
-
execute
void execute(SharedSessionContractImplementor session, java.lang.Object incomingObject, java.lang.Object injectionContext)
Execute the value generation.- Parameters:
session
- The current sessionincomingObject
- The entity for which we are generating idinjectionContext
- The context into which the generated value can be injected
-
-