Class EndpointTransformerDefinition

java.lang.Object
org.apache.camel.model.transformer.TransformerDefinition
org.apache.camel.model.transformer.EndpointTransformerDefinition

@Metadata(label="transformation") public class EndpointTransformerDefinition extends TransformerDefinition
Represents an endpoint Transformer which leverages camel Endpoint to perform transformation. A ProcessorTransformer will be created internally with a SendProcessor which forwards the message to the specified Endpoint. One of the Endpoint 'ref' or 'uri' needs to be specified.
  • Constructor Details

    • EndpointTransformerDefinition

      public EndpointTransformerDefinition()
  • Method Details

    • getRef

      public String getRef()
    • setRef

      public void setRef(String ref)
      Set the reference of the Endpoint.
    • getUri

      public String getUri()
    • setUri

      public void setUri(String uri)
      Set the URI of the Endpoint.