Package org.apache.openjpa.jdbc.meta
Interface Strategy
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
ClassStrategy,DiscriminatorStrategy,FieldStrategy,LRSCollectionFieldStrategy,LRSMapFieldStrategy,VersionStrategy
- All Known Implementing Classes:
AbstractClassStrategy,AbstractDiscriminatorStrategy,AbstractFieldStrategy,AbstractStrategy,AbstractVersionStrategy,ClassMapping,ClassNameDiscriminatorStrategy,ColumnVersionStrategy,ContainerFieldStrategy,Discriminator,EmbeddedClassStrategy,EmbedFieldStrategy,FieldMapping,FlatClassStrategy,FullClassStrategy,HandlerCollectionTableFieldStrategy,HandlerFieldStrategy,HandlerHandlerMapTableFieldStrategy,HandlerRelationMapTableFieldStrategy,InValueDiscriminatorStrategy,LobFieldStrategy,MapTableFieldStrategy,MaxEmbeddedBlobFieldStrategy,MaxEmbeddedByteArrayFieldStrategy,MaxEmbeddedCharArrayFieldStrategy,MaxEmbeddedClobFieldStrategy,MultiColumnVersionStrategy,NanoPrecisionTimestampVersionStrategy,NoneClassStrategy,NoneDiscriminatorStrategy,NoneFieldStrategy,NoneVersionStrategy,NumberVersionStrategy,ObjectIdClassStrategy,PrimitiveFieldStrategy,RelationCollectionInverseKeyFieldStrategy,RelationCollectionTableFieldStrategy,RelationFieldStrategy,RelationHandlerMapTableFieldStrategy,RelationMapInverseKeyFieldStrategy,RelationMapTableFieldStrategy,RelationRelationMapTableFieldStrategy,RelationToManyInverseKeyFieldStrategy,RelationToManyTableFieldStrategy,StateComparisonVersionStrategy,StoreCollectionFieldStrategy,StringFieldStrategy,SubclassJoinDiscriminatorStrategy,SuperclassDiscriminatorStrategy,SuperclassVersionStrategy,TimestampVersionStrategy,ValueMapDiscriminatorStrategy,Version,VerticalClassStrategy
Interface implemented by all mapping strategies.
- Since:
- 0.4.0
- Author:
- Abe White
-
Method Summary
Modifier and TypeMethodDescriptionvoidcustomDelete(OpenJPAStateManager sm, JDBCStore store) Override this method to customize flushing this mapping.voidcustomInsert(OpenJPAStateManager sm, JDBCStore store) Override this method to customize flushing this mapping.voidcustomUpdate(OpenJPAStateManager sm, JDBCStore store) Override this method to customize flushing this mapping.voiddelete(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set the where values appropriately to delete the proper instance, and set all relations on non-secondary tables as updates.getAlias()Return the alias of this strategy.voidPerform caching and other initialization operations.voidinsert(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set values for the mapping into the proper rows.isCustomDelete(OpenJPAStateManager sm, JDBCStore store) ReturnBoolean.FALSEif this mapping does not customize the delete process,Boolean.TRUEif it does, or null if it does customize the delete, but also relies on the standard delete method being called.isCustomInsert(OpenJPAStateManager sm, JDBCStore store) ReturnBoolean.FALSEif this mapping does not customize the insert process,Boolean.TRUEif it does, or null if it does customize the insert, but also relies on the standard insert method being called.isCustomUpdate(OpenJPAStateManager sm, JDBCStore store) ReturnBoolean.FALSEif this mapping does not customize the update process,Boolean.TRUEif it does, or null if it does customize the update, but also relies on the standard update method being called.voidmap(boolean adapt) Map the owning mapping using this strategy.voidupdate(OpenJPAStateManager sm, JDBCStore store, RowManager rm) Set values for the mapping into the proper rows.
-
Method Details
-
getAlias
String getAlias()Return the alias of this strategy. For custom strategies, return the full class name. -
map
void map(boolean adapt) Map the owning mapping using this strategy.- Parameters:
adapt- if true, use the owning mapping's raw mapping info to set its ORM data; if false, ORM data will already be set- Throws:
MetaDataException- if unable to map
-
initialize
void initialize()Perform caching and other initialization operations. This method is called aftermap(boolean), and after all related components have been mapped as well. -
insert
Set values for the mapping into the proper rows. For class mappings, this method will be called only after the corresponding method has been called for all fields of this mapping.- Throws:
SQLException
-
update
Set values for the mapping into the proper rows. -
delete
Set the where values appropriately to delete the proper instance, and set all relations on non-secondary tables as updates. This allows foreign key analysis. -
isCustomInsert
ReturnBoolean.FALSEif this mapping does not customize the insert process,Boolean.TRUEif it does, or null if it does customize the insert, but also relies on the standard insert method being called. Implement thecustomInsert(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore)method to implement the custom insertion behavior. -
isCustomUpdate
ReturnBoolean.FALSEif this mapping does not customize the update process,Boolean.TRUEif it does, or null if it does customize the update, but also relies on the standard update method being called. Implement thecustomUpdate(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore)method to override the default update behavior. -
isCustomDelete
ReturnBoolean.FALSEif this mapping does not customize the delete process,Boolean.TRUEif it does, or null if it does customize the delete, but also relies on the standard delete method being called. Implement thecustomDelete(org.apache.openjpa.kernel.OpenJPAStateManager, org.apache.openjpa.jdbc.kernel.JDBCStore)method to override the default deletion behavior. -
customInsert
Override this method to customize flushing this mapping. For classes, this method must also flush all fields. For fields, this method is called after the owning object is inserted, so if this field is in a row with other fields, that row will already exist.- Throws:
SQLException
-
customUpdate
Override this method to customize flushing this mapping. For classes, this method must also flush all fields.- Throws:
SQLException
-
customDelete
Override this method to customize flushing this mapping. For classes, this method must also flush all fields. For fields, this method will be called after the owning object is deleted.- Throws:
SQLException
-