Uses of Interface
org.axonframework.upcasting.Upcaster

Packages that use Upcaster
org.axonframework.quickstart   
org.axonframework.upcasting   
 

Uses of Upcaster in org.axonframework.quickstart
 

Classes in org.axonframework.quickstart that implement Upcaster
static class RunUpcaster.ToDoItemUpcaster
          This is our upcaster.
 

Uses of Upcaster in org.axonframework.upcasting
 

Subinterfaces of Upcaster in org.axonframework.upcasting
 interface ExtendedUpcaster<T>
          Extension of the Upcaster interface that allows type upcasting to be based on the contents of the serialized object.
 

Classes in org.axonframework.upcasting that implement Upcaster
 class AbstractSingleEntryUpcaster<T>
          Abstract implementation of an upcaster that only needs to convert one serialized object to another using the same representation.
 

Methods in org.axonframework.upcasting with parameters of type Upcaster
protected
<T> List<SerializedObject<?>>
SimpleUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes, UpcastingContext context)
           
protected
<T> List<SerializedObject<?>>
LazyUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes, UpcastingContext context)
           
protected abstract
<T> List<SerializedObject<?>>
AbstractUpcasterChain.doUpcast(Upcaster<T> upcaster, SerializedObject<?> sourceObject, List<SerializedType> targetTypes, UpcastingContext context)
          Performs the actual upcasting by the given upcaster on the given sourceObject.
 

Constructors in org.axonframework.upcasting with parameters of type Upcaster
SimpleUpcasterChain(ConverterFactory converterFactory, Upcaster... upcasters)
          Initialize a chain of the given upcasters and using the given converterFactory to create converters for the intermediate representations used by the upcasters.
 

Constructor parameters in org.axonframework.upcasting with type arguments of type Upcaster
AbstractUpcasterChain(ConverterFactory converterFactory, List<Upcaster> upcasters)
          Initializes the UpcasterChain with given converterFactory and upcasters.
AbstractUpcasterChain(List<Upcaster> upcasters)
          Initializes the UpcasterChain with given upcasters and a ChainingConverterFactory to convert between content types.
LazyUpcasterChain(ConverterFactory converterFactory, List<Upcaster> upcasters)
          Initializes the UpcasterChain with given converterFactory and upcasters.
LazyUpcasterChain(List<Upcaster> upcasters)
          Initializes the UpcasterChain with given upcasters and a ChainingConverterFactory to convert between content types.
LazyUpcasterChain(Serializer serializer, List<Upcaster> upcasters)
          Initializes the UpcasterChain with given serializer and upcasters.
SimpleUpcasterChain(ConverterFactory converterFactory, List<Upcaster> upcasters)
          Initializes the UpcasterChain with given converterFactory and upcasters.
SimpleUpcasterChain(List<Upcaster> upcasters)
          Initializes the UpcasterChain with given upcasters and a ChainingConverterFactory to convert between content types.
SimpleUpcasterChain(Serializer serializer, List<Upcaster> upcasters)
          Initializes the UpcasterChain with given serializer and upcasters.
 



Copyright © 2010-2016. All Rights Reserved.