Uses of Interface
org.axonframework.serializer.SerializedType

Packages that use SerializedType
org.axonframework.serializer   
org.axonframework.upcasting   
 

Uses of SerializedType in org.axonframework.serializer
 

Classes in org.axonframework.serializer that implement SerializedType
 class SimpleSerializedType
          SerializedType implementation that takes its properties as constructor parameters.
 

Methods in org.axonframework.serializer that return SerializedType
 SerializedType SimpleSerializedObject.getType()
           
 SerializedType SerializedObject.getType()
          Returns the description of the type of object contained in the data.
 SerializedType SerializedMetaData.getType()
           
 SerializedType Serializer.typeForClass(Class type)
          Returns the type identifier for the given class.
 SerializedType MessageSerializer.typeForClass(Class type)
           
 SerializedType JavaSerializer.typeForClass(Class type)
           
 SerializedType AbstractXStreamSerializer.typeForClass(Class type)
           
 

Methods in org.axonframework.serializer with parameters of type SerializedType
 Class Serializer.classForType(SerializedType type)
          Returns the class for the given type identifier.
 Class MessageSerializer.classForType(SerializedType type)
           
 Class JavaSerializer.classForType(SerializedType type)
           
 Class AbstractXStreamSerializer.classForType(SerializedType type)
          Returns the class for the given type identifier.
 

Constructors in org.axonframework.serializer with parameters of type SerializedType
SimpleSerializedObject(T data, Class<T> dataType, SerializedType serializedType)
          Initializes a SimpleSerializedObject using given data and serializedType.
UnknownSerializedTypeException(SerializedType serializedType)
          Initialize the constructor with a default message, containing details of the given serializedType
UnknownSerializedTypeException(SerializedType serializedType, Throwable cause)
          Initialize the constructor with a default message, containing details of the given serializedType
 

Uses of SerializedType in org.axonframework.upcasting
 

Methods in org.axonframework.upcasting that return types with arguments of type SerializedType
 List<SerializedType> Upcaster.upcast(SerializedType serializedType)
          Upcast the given serializedType into its new format.
 

Methods in org.axonframework.upcasting with parameters of type SerializedType
 boolean Upcaster.canUpcast(SerializedType serializedType)
          Indicates whether this upcaster is capable of upcasting the given type.
 List<SerializedType> Upcaster.upcast(SerializedType serializedType)
          Upcast the given serializedType into its new format.
 

Method parameters in org.axonframework.upcasting with type arguments of type SerializedType
protected
<T> List<SerializedObject<?>>
SimpleUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes)
           
protected
<T> List<SerializedObject<?>>
LazyUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes)
           
protected abstract
<T> List<SerializedObject<?>>
AbstractUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes)
          Performs the actual upcasting by the given upcaster on the given sourceObject.
 List<SerializedObject<?>> Upcaster.upcast(SerializedObject<T> intermediateRepresentation, List<SerializedType> expectedTypes)
          Upcasts the given intermediateRepresentation into zero or more other representations.
 



Copyright © 2010-2012. All Rights Reserved.