Interface IPostEntityDeserializationParams
-
public interface IPostEntityDeserializationParams- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description de.xima.cmn.dao.interfaces.IEntity<Long>getEntity()StringgetFcSerializationVersion()IEntityDeserializationStateHoldergetStateHolder()Gets the state holder for setting and retrieving data.
-
-
-
Method Detail
-
getEntity
de.xima.cmn.dao.interfaces.IEntity<Long> getEntity()
- Returns:
IEntitythat has been deserialized
-
getFcSerializationVersion
String getFcSerializationVersion()
- Returns:
- the formcycle version in which the entity was serialized
-
getStateHolder
IEntityDeserializationStateHolder getStateHolder()
Gets the state holder for setting and retrieving data. The state's lifecycle is tied to the entity being serialized. In particular, state set inhandlePreFieldDeserializationHookwill be available inhandlePostEntityDeserializationHook.- Returns:
IStateHolderstate holder for the entity being processed.
-
-