Interface ColumnMappingPostSet
public interface ColumnMappingPostSet
Interface implemented by any ColumnMapping that requires a post-set (insert/update) step.
For example, with Oracle CLOB/BLOB the INSERT will just put "EMPTY_CLOB" or "EMPTY_BLOB" and this will SELECT the column and update it.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setPostProcessing
(org.datanucleus.state.DNStateManager sm, Object value) Perform any post "set" processing on this column, using the provided value.
-
Method Details
-
setPostProcessing
Perform any post "set" processing on this column, using the provided value.- Parameters:
sm
- StateManager for object being setvalue
- The value to use on the set
-