Class ElementEmbedValueHandler
java.lang.Object
org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
org.apache.openjpa.jdbc.meta.strats.EmbedValueHandler
org.apache.openjpa.jdbc.meta.strats.ElementEmbedValueHandler
- All Implemented Interfaces:
Serializable,RelationId,ValueHandler
Handler for embedded objects as elements of a collection or map. For
embedded objects as fields, use the more powerful
EmbedFieldStrategy.
- Since:
- 0.4.0, 1.1.0
- Author:
- Abe White
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn the argument to pass to the result set when loading data viaResult.getObject(java.lang.Object, int, java.lang.Object), or null if none.Column[]map(ValueMapping vm, String name, ColumnIO io, boolean adapt) Deprecated.Column[]map(ValueMapping vm, DBIdentifier name, ColumnIO io, boolean adapt) booleanReturn whether this handler potentially must load extra data to extract the object value from its datastore representation.toDataStoreValue(ValueMapping vm, Object val, JDBCStore store) Translate the given value to its datastore equivalent.toObjectValue(ValueMapping vm, Object val, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) Translate the given datastore value into its Java equivalent.Return the serialized value for the given related object, now that its id has been assigned.Methods inherited from class org.apache.openjpa.jdbc.meta.strats.EmbedValueHandler
getEmbeddedIdCols, getIdColumns, map, map, toDataStoreValue, toDataStoreValue1, toObjectValue, toObjectValue1Methods inherited from class org.apache.openjpa.jdbc.meta.strats.AbstractValueHandler
isVersionable, toObjectValue
-
Constructor Details
-
ElementEmbedValueHandler
public ElementEmbedValueHandler()
-
-
Method Details
-
map
Deprecated.Description copied from interface:ValueHandlerMap the given value and return all mapped columns, or simply return an array of unmapped default columns. The columns should have at least theirNameandJavaTypeproperties set.- Specified by:
mapin interfaceValueHandlername- use as a base to form column name(s); the column names of unmapped columns will automatically be made to fit database limitationsio- I/O information about mapped columns; you do not have to set this information if returning templatesadapt- whether to adapt the mapping or schema
-
map
-
objectValueRequiresLoad
Description copied from interface:ValueHandlerReturn whether this handler potentially must load extra data to extract the object value from its datastore representation.- Specified by:
objectValueRequiresLoadin interfaceValueHandler- Overrides:
objectValueRequiresLoadin classAbstractValueHandler
-
getResultArgument
Description copied from interface:ValueHandlerReturn the argument to pass to the result set when loading data viaResult.getObject(java.lang.Object, int, java.lang.Object), or null if none. If this value occupies multiple columns, return an array with one element per column. You may return null if all array elements would be null.- Specified by:
getResultArgumentin interfaceValueHandler- Overrides:
getResultArgumentin classAbstractValueHandler
-
toDataStoreValue
Description copied from interface:ValueHandlerTranslate the given value to its datastore equivalent. If this value occupies multiple columns, return an object array with one element per column. For relation id columns, return the state manager the column depends on.- Specified by:
toDataStoreValuein interfaceValueHandler- Overrides:
toDataStoreValuein classAbstractValueHandler
-
toObjectValue
public Object toObjectValue(ValueMapping vm, Object val, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch) throws SQLException Description copied from interface:ValueHandlerTranslate the given datastore value into its Java equivalent. If the value occupies multiple columns, the given object will be an object array with one entry per column. This method is only called ifValueHandler.objectValueRequiresLoad(org.apache.openjpa.jdbc.meta.ValueMapping)returns true.- Specified by:
toObjectValuein interfaceValueHandler- Overrides:
toObjectValuein classAbstractValueHandlersm- the state manager that owns the value; may be null if loading a projection- Throws:
SQLException
-
toRelationDataStoreValue
Description copied from interface:RelationIdReturn the serialized value for the given related object, now that its id has been assigned.- Specified by:
toRelationDataStoreValuein interfaceRelationId
-