Package | Description |
---|---|
org.axonframework.eventstore.jpa |
JPA Implementation of the EventStore.
|
org.axonframework.quickstart | |
org.axonframework.serializer | |
org.axonframework.serializer.json | |
org.axonframework.upcasting |
Modifier and Type | Method and Description |
---|---|
protected SerializedType |
AbstractEventEntryData.getPayloadType()
Returns the payload type of the event message stored in this entry.
|
Constructor and Description |
---|
AbstractEventEntryData(String eventIdentifier,
String type,
String aggregateIdentifier,
long sequenceNumber,
org.joda.time.DateTime timestamp,
SerializedType payloadType)
Initializes the fields in this entity using the values provided in the given parameters.
|
Modifier and Type | Method and Description |
---|---|
SerializedType |
RunUpcaster.ToDoItemUpcaster.doUpcast(SerializedType serializedType) |
Modifier and Type | Method and Description |
---|---|
boolean |
RunUpcaster.ToDoItemUpcaster.canUpcast(SerializedType serializedType) |
SerializedType |
RunUpcaster.ToDoItemUpcaster.doUpcast(SerializedType serializedType) |
Modifier and Type | Class and Description |
---|---|
class |
SimpleSerializedType
SerializedType implementation that takes its properties as constructor parameters.
|
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
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 |
Modifier and Type | Method and Description |
---|---|
SerializedType |
JacksonSerializer.typeForClass(Class type) |
Modifier and Type | Method and Description |
---|---|
Class |
JacksonSerializer.classForType(SerializedType type) |
protected String |
JacksonSerializer.resolveClassName(SerializedType serializedType)
Resolve the class name from the given
serializedType . |
Modifier and Type | Method and Description |
---|---|
protected abstract SerializedType |
AbstractSingleEntryUpcaster.doUpcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
Modifier and Type | Method and Description |
---|---|
List<SerializedType> |
Upcaster.upcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
List<SerializedType> |
ExtendedUpcaster.upcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
List<SerializedType> |
AbstractSingleEntryUpcaster.upcast(SerializedType serializedType) |
List<SerializedType> |
ExtendedUpcaster.upcast(SerializedType serializedType,
SerializedObject<T> intermediateRepresentation)
Upcast the given
serializedType into its new format. |
Modifier and Type | Method and Description |
---|---|
boolean |
Upcaster.canUpcast(SerializedType serializedType)
Indicates whether this upcaster is capable of upcasting the given
type . |
protected abstract SerializedType |
AbstractSingleEntryUpcaster.doUpcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
List<SerializedType> |
Upcaster.upcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
List<SerializedType> |
ExtendedUpcaster.upcast(SerializedType serializedType)
Upcast the given
serializedType into its new format. |
List<SerializedType> |
AbstractSingleEntryUpcaster.upcast(SerializedType serializedType) |
List<SerializedType> |
ExtendedUpcaster.upcast(SerializedType serializedType,
SerializedObject<T> intermediateRepresentation)
Upcast the given
serializedType into its new format. |
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 . |
List<SerializedObject<?>> |
Upcaster.upcast(SerializedObject<T> intermediateRepresentation,
List<SerializedType> expectedTypes,
UpcastingContext context)
Upcasts the given
intermediateRepresentation into zero or more other representations. |
List<SerializedObject<?>> |
AbstractSingleEntryUpcaster.upcast(SerializedObject<T> intermediateRepresentation,
List<SerializedType> expectedTypes,
UpcastingContext context) |
Copyright © 2010-2014. All Rights Reserved.