|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SerializedType | |
---|---|
org.axonframework.eventstore.jpa | JPA Implementation of the EventStore. |
org.axonframework.quickstart | |
org.axonframework.serializer | |
org.axonframework.serializer.json | |
org.axonframework.upcasting |
Uses of SerializedType in org.axonframework.eventstore.jpa |
---|
Methods in org.axonframework.eventstore.jpa that return SerializedType | |
---|---|
protected SerializedType |
AbstractEventEntryData.getPayloadType()
Returns the payload type of the event message stored in this entry. |
Constructors in org.axonframework.eventstore.jpa with parameters of type SerializedType | |
---|---|
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. |
Uses of SerializedType in org.axonframework.quickstart |
---|
Methods in org.axonframework.quickstart that return SerializedType | |
---|---|
SerializedType |
RunUpcaster.ToDoItemUpcaster.doUpcast(SerializedType serializedType)
|
Methods in org.axonframework.quickstart with parameters of type SerializedType | |
---|---|
boolean |
RunUpcaster.ToDoItemUpcaster.canUpcast(SerializedType serializedType)
|
SerializedType |
RunUpcaster.ToDoItemUpcaster.doUpcast(SerializedType serializedType)
|
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.serializer.json |
---|
Methods in org.axonframework.serializer.json that return SerializedType | |
---|---|
SerializedType |
JacksonSerializer.typeForClass(Class type)
|
Methods in org.axonframework.serializer.json with parameters of type SerializedType | |
---|---|
Class |
JacksonSerializer.classForType(SerializedType type)
|
protected String |
JacksonSerializer.resolveClassName(SerializedType serializedType)
Resolve the class name from the given serializedType . |
Uses of SerializedType in org.axonframework.upcasting |
---|
Methods in org.axonframework.upcasting that return SerializedType | |
---|---|
protected abstract SerializedType |
AbstractSingleEntryUpcaster.doUpcast(SerializedType serializedType)
Upcast the given serializedType into its new format. |
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. |
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. |
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 . |
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. |
Method parameters in org.axonframework.upcasting with type arguments of type SerializedType | ||
---|---|---|
protected
|
SimpleUpcasterChain.doUpcast(Upcaster<T> upcaster,
SerializedObject<?> sourceObject,
List<SerializedType> targetTypes,
UpcastingContext context)
|
|
protected
|
LazyUpcasterChain.doUpcast(Upcaster<T> upcaster,
SerializedObject<?> sourceObject,
List<SerializedType> targetTypes,
UpcastingContext context)
|
|
protected abstract
|
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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |