Interface IdentifierBridge<I>
- Type Parameters:
I
- The type of identifiers on the POJO side of the bridge.
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
IdentifierBridgeRef.UndefinedBridgeImplementationType
A bridge between a POJO property of type
I
and a document identifier.-
Method Summary
Modifier and TypeMethodDescriptiondefault void
close()
Close any resource before the bridge is discarded.fromDocumentIdentifier
(String documentIdentifier, IdentifierBridgeFromDocumentIdentifierContext context) Transform the given document identifier value back to the value of the POJO property.default boolean
isCompatibleWith
(IdentifierBridge<?> other) default I
parseIdentifierLiteral
(String value) Transform the given document identifier string value back to the value of the POJO property.toDocumentIdentifier
(I propertyValue, IdentifierBridgeToDocumentIdentifierContext context) Transform the given POJO property value to the value of the document identifier.
-
Method Details
-
toDocumentIdentifier
Transform the given POJO property value to the value of the document identifier.Must return a unique value for each value of
propertyValue
- Parameters:
propertyValue
- The POJO property value to be transformed.context
- A context that can beextended
to a more useful type, giving access to such things as a Hibernate ORM SessionFactory (if using the Hibernate ORM mapper).- Returns:
- The value of the document identifier.
-
fromDocumentIdentifier
I fromDocumentIdentifier(String documentIdentifier, IdentifierBridgeFromDocumentIdentifierContext context) Transform the given document identifier value back to the value of the POJO property.Must be the exact inverse function of
toDocumentIdentifier(Object, IdentifierBridgeToDocumentIdentifierContext)
, i.e.object.equals(fromDocumentIdentifier(toDocumentIdentifier(object, sessionContext)))
must always be true.- Parameters:
documentIdentifier
- The document identifier value to be transformed.context
- A sessionContext that can beextended
to a more useful type, giving access to such things as a Hibernate ORM Session (if using the Hibernate ORM mapper).- Returns:
- The value of the document identifier.
-
isCompatibleWith
-
parseIdentifierLiteral
Transform the given document identifier string value back to the value of the POJO property.- Parameters:
value
- The value to parse.- Returns:
- The raw index field value.
- Throws:
RuntimeException
- If the value cannot be parsed to the raw index field value.
-
close
default void close()Close any resource before the bridge is discarded.- Specified by:
close
in interfaceAutoCloseable
-