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
Modifier and TypeMethodDescriptionvoid
For hooking into the deserialization after the entity has been fully deserializedboolean
For hooking into deserialization of an entity field before it is being processed by the default Deserialization
-
Method Details
-
handlePreFieldDeserializationHook
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
For hooking into the deserialization after the entity has been fully deserialized- Parameters:
params
- details of the entity deserialization result
-