Package | Description |
---|---|
org.axonframework.quickstart | |
org.axonframework.upcasting |
Modifier and Type | Class and Description |
---|---|
static class |
RunUpcaster.ToDoItemUpcaster
This is our upcaster.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ExtendedUpcaster<T>
Extension of the Upcaster interface that allows type upcasting to be based on the contents of the
serialized object.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSingleEntryUpcaster<T>
Abstract implementation of an upcaster that only needs to convert one serialized object to another using the same
representation.
|
Modifier and Type | Method and Description |
---|---|
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 . |
Constructor and Description |
---|
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 and Description |
---|
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-2014. All Rights Reserved.