Uses of Interface
io.axoniq.dataprotection.serialization.SerializedObject
-
Packages that use SerializedObject Package Description io.axoniq.dataprotection.api Annotations, exceptions and encryption service objects of the Axon Data Protection Module.io.axoniq.dataprotection.serialization Light-weight version of the serialization functionality in Axon Framework.io.axoniq.dataprotection.serialization.json Support for serialization to JSON via Jackson.io.axoniq.dataprotection.serialization.xml Support for serialization to XML via XStream. -
-
Uses of SerializedObject in io.axoniq.dataprotection.api
Methods in io.axoniq.dataprotection.api that return SerializedObject Modifier and Type Method Description <T> SerializedObject<T>FieldEncryptingSerializer. serialize(Object object, Class<T> expectedRepresentation)Serialize the givenobjectinto a Serialized Object containing the givenexpectedRepresentation.Methods in io.axoniq.dataprotection.api with parameters of type SerializedObject Modifier and Type Method Description <S,T>
TFieldEncryptingSerializer. deserialize(SerializedObject<S> serializedObject)Deserializes the first object read from the givenbytes. -
Uses of SerializedObject in io.axoniq.dataprotection.serialization
Classes in io.axoniq.dataprotection.serialization that implement SerializedObject Modifier and Type Class Description classSimpleSerializedObject<T>SerializedObject implementation that takes all properties as constructor parameters.Methods in io.axoniq.dataprotection.serialization that return SerializedObject Modifier and Type Method Description default <T> SerializedObject<T>Converter. convert(SerializedObject<?> original, Class<T> targetType)Converts the data format of the givenoriginalIntermediateRepresentation to the target data type.<T> SerializedObject<T>AbstractXStreamSerializer. serialize(Object object, Class<T> expectedType)<T> SerializedObject<T>JavaSerializer. serialize(Object instance, Class<T> expectedType)<T> SerializedObject<T>Serializer. serialize(Object object, Class<T> expectedRepresentation)Serialize the givenobjectinto a Serialized Object containing the givenexpectedRepresentation.Methods in io.axoniq.dataprotection.serialization with parameters of type SerializedObject Modifier and Type Method Description default <T> SerializedObject<T>Converter. convert(SerializedObject<?> original, Class<T> targetType)Converts the data format of the givenoriginalIntermediateRepresentation to the target data type.<S,T>
TAbstractXStreamSerializer. deserialize(SerializedObject<S> serializedObject)<S,T>
TJavaSerializer. deserialize(SerializedObject<S> serializedObject)<S,T>
TSerializer. deserialize(SerializedObject<S> serializedObject)Deserializes the first object read from the givenbytes.protected abstract ObjectAbstractXStreamSerializer. doDeserialize(SerializedObject serializedObject, com.thoughtworks.xstream.XStream xStream)Deserialize the givenserializedObject. -
Uses of SerializedObject in io.axoniq.dataprotection.serialization.json
Methods in io.axoniq.dataprotection.serialization.json that return SerializedObject Modifier and Type Method Description <T> SerializedObject<T>JacksonSerializer. serialize(Object object, Class<T> expectedRepresentation)Methods in io.axoniq.dataprotection.serialization.json with parameters of type SerializedObject Modifier and Type Method Description <S,T>
TJacksonSerializer. deserialize(SerializedObject<S> serializedObject) -
Uses of SerializedObject in io.axoniq.dataprotection.serialization.xml
Methods in io.axoniq.dataprotection.serialization.xml with parameters of type SerializedObject Modifier and Type Method Description ObjectXStreamSerializer. doDeserialize(SerializedObject serializedObject, com.thoughtworks.xstream.XStream xStream)
-