Interface IEntityDeserializationExtension
-
- All Known Implementing Classes:
WorkflowStateDeserializationExtension
public interface IEntityDeserializationExtension
Extension for hooking into the deserialization of entities e.g. for considering deprecated fields- Since:
- 7.0.5
- Author:
- XIMA Media GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handlePostEntityDeserializationHook(IPostEntityDeserializationParams params)
For hooking into the deserialization after the entity has been fully deserializedboolean
handlePreFieldDeserializationHook(IPreFieldDeserializationHookParams params)
For hooking into deserialization of an entity field before it is being processed by the default Deserialization
-
-
-
Method Detail
-
handlePreFieldDeserializationHook
boolean handlePreFieldDeserializationHook(IPreFieldDeserializationHookParams params)
For hooking into deserialization of an entity field before it is being processed by the default Deserialization- Parameters:
params
- details about the field that is currently being processed- Returns:
- if further deserialization of the field should be skipped
-
handlePostEntityDeserializationHook
void handlePostEntityDeserializationHook(IPostEntityDeserializationParams params)
For hooking into the deserialization after the entity has been fully deserialized- Parameters:
params
- details of the entity deserialization result
-
-