public interface ValueGenerator<T>
A super-interface designed to allow auto-generated values to be inserted into database fields on INSERT. Potentially, this could be expanded to also include on UPDATE functionality, but for the moment it only handles on entity creation (INSERT). Implementations are assumed to be completely stateless and thus thread-safe.
The type parameter represents the return type of the method which does the actual generation.
Generator
Modifier and Type | Method and Description |
---|---|
T |
generateValue(EntityManager manager)
Generate a new value for an arbitrary field.
|
T generateValue(EntityManager manager)
EntityManager
instance is only
intended to ensure various field constraints (such as
uniqueness for primary keys). Great care should be
taken with performing such operations, as the value
generation method needs to be extremely efficient.manager
- An instance to gain read access to the database.Copyright © 2007–2022 Atlassian. All rights reserved.