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()
String
getFcSerializationVersion()
IEntityDeserializationStateHolder
getStateHolder()
Gets the state holder for setting and retrieving data.
-
-
-
Method Detail
-
getEntity
de.xima.cmn.dao.interfaces.IEntity<Long> getEntity()
- Returns:
IEntity
that 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 inhandlePreFieldDeserializationHook
will be available inhandlePostEntityDeserializationHook
.- Returns:
IStateHolder
state holder for the entity being processed.
-
-