Uses of Interface
org.axonframework.serialization.ContentTypeConverter
Packages that use ContentTypeConverter
Package
Description
Classes related to message processing in Axon Framework.
-
Uses of ContentTypeConverter in org.axonframework.serialization
Classes in org.axonframework.serialization that implement ContentTypeConverterModifier and TypeClassDescriptionclassChainedConverter<S,T> A converter that delegates to a chain of other ContentTypeConverters to convert from a source to a target for which there is not necessarily a single converter available.Methods in org.axonframework.serialization that return types with arguments of type ContentTypeConverterModifier and TypeMethodDescriptionChainingConverter.getContentTypeConverters()Retrieves the list ofContentTypeConverterregistered in thisChainingConverterinstance.Methods in org.axonframework.serialization with parameters of type ContentTypeConverterModifier and TypeMethodDescriptionvoidChainingConverter.registerConverter(ContentTypeConverter converter) Registers the givenconverterwith this factory.Method parameters in org.axonframework.serialization with type arguments of type ContentTypeConverterModifier and TypeMethodDescriptionstatic <S,T> ChainedConverter <S, T> ChainedConverter.calculateChain(Class<S> sourceType, Class<T> targetType, Collection<ContentTypeConverter<?, ?>> candidates) Returns a converter that can convert an IntermediateRepresentation from the givensourceTypeto the giventargetTypeusing a chain formed with givencandidates.static <S,T> boolean ChainedConverter.canConvert(Class<S> sourceContentType, Class<T> targetContentType, List<ContentTypeConverter<?, ?>> converters) Indicates whether this converter is capable of converting the givensourceContentTypeintotargetContentType, using the givenconverters.voidChainingConverter.registerConverter(Class<? extends ContentTypeConverter> converterType) Registers a convert of the givenconverterTypewith this factory, only if initialization of such a converter is possible.voidChainingConverter.setAdditionalConverters(List<ContentTypeConverter> additionalConverters) Setter for dependency injection frameworks that require property methods.Constructor parameters in org.axonframework.serialization with type arguments of type ContentTypeConverterModifierConstructorDescriptionChainedConverter(List<ContentTypeConverter<?, ?>> delegates) Creates a new instance that uses the givendelegatesto form a chain of converters. -
Uses of ContentTypeConverter in org.axonframework.serialization.avro
Classes in org.axonframework.serialization.avro that implement ContentTypeConverterModifier and TypeClassDescriptionclassContent type converter between single-object-encoded bytes and Avro generic record.classContent type converter between Avro generic record and single-object-encoded bytes. -
Uses of ContentTypeConverter in org.axonframework.serialization.converters
Classes in org.axonframework.serialization.converters that implement ContentTypeConverterModifier and TypeClassDescriptionclassclassContentTypeConverter that converts byte arrays into InputStream.classContentTypeConverter that converts byte arrays into Strings.classConverter that converts an InputStream to a byte array.classContentTypeConverter that converts String into byte arrays. -
Uses of ContentTypeConverter in org.axonframework.serialization.jackson3
Classes in org.axonframework.serialization.jackson3 that implement ContentTypeConverterModifier and TypeClassDescriptionclassContentTypeConverter implementation for Jackson 3 that converts byte[] containing UTF8 encoded JSON string to a Jackson JsonNode.classContentTypeConverter implementation for Jackson 3 that converts a JsonNode object into a byte[].classAContentTypeConverterimplementation for Jackson 3 that converts aJsonNodeobject into anObjectNode.classAContentTypeConverterimplementation for Jackson 3 that converts anObjectNodeobject into aJsonNode. -
Uses of ContentTypeConverter in org.axonframework.serialization.json
Classes in org.axonframework.serialization.json that implement ContentTypeConverterModifier and TypeClassDescriptionclassContentTypeConverter implementation for Jackson 2 that converts byte[] containing UTF8 encoded JSON string to a Jackson JsonNode.classContentTypeConverter implementation for Jackson 2 that converts a JsonNode object into a byte[].classAContentTypeConverterimplementation for Jackson 2 that converts aJsonNodeobject into anObjectNode.classAContentTypeConverterimplementation for Jackson 2 that converts anObjectNodeobject into aJsonNode. -
Uses of ContentTypeConverter in org.axonframework.serialization.xml
Classes in org.axonframework.serialization.xml that implement ContentTypeConverterModifier and TypeClassDescriptionclassConverter that converts Dom4j Document instances to a byte array.classConverter that converts an input stream to a Dom4J document.classConverter that converts an input stream to a XOM document.classConverter that converts XOM Document instances to a String.