Uses of Class
org.apache.camel.model.transformer.TransformerDefinition
-
Packages that use TransformerDefinition Package Description org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules.org.apache.camel.model.transformer The JAXB POJOs for the Transformers used to transform message contents according to declared data types inside components -
-
Uses of TransformerDefinition in org.apache.camel.model
Methods in org.apache.camel.model that return types with arguments of type TransformerDefinition Modifier and Type Method Description List<TransformerDefinition>
Model. getTransformers()
Gets the transformers that can be referenced in the routes.Methods in org.apache.camel.model with parameters of type TransformerDefinition Modifier and Type Method Description void
ModelCamelContext. registerTransformer(TransformerDefinition transformer)
Registers the route transformerMethod parameters in org.apache.camel.model with type arguments of type TransformerDefinition Modifier and Type Method Description void
Model. setTransformers(List<TransformerDefinition> transformers)
Sets the transformers that can be referenced in the routes. -
Uses of TransformerDefinition in org.apache.camel.model.transformer
Subclasses of TransformerDefinition in org.apache.camel.model.transformer Modifier and Type Class Description class
CustomTransformerDefinition
Represents a CustomTransformer.class
DataFormatTransformerDefinition
Represents aDataFormatTransformer
which leveragesDataFormat
to perform transformation.class
EndpointTransformerDefinition
Represents an endpointTransformer
which leverages camelEndpoint
to perform transformation.Methods in org.apache.camel.model.transformer that return types with arguments of type TransformerDefinition Modifier and Type Method Description List<TransformerDefinition>
TransformersDefinition. getTransformers()
Method parameters in org.apache.camel.model.transformer with type arguments of type TransformerDefinition Modifier and Type Method Description void
TransformersDefinition. setTransformers(List<TransformerDefinition> transformers)
The configured transformers
-