Uses of Class
org.apache.camel.model.DataFormatDefinition

Packages that use DataFormatDefinition
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.impl.osgi Camel OSGi Activator. 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.model.dataformat The JAXB POJOs for the Data Formats used to marshal and unmarshal objects to and from streams inside components 
 

Uses of DataFormatDefinition in org.apache.camel
 

Methods in org.apache.camel that return DataFormatDefinition
 DataFormatDefinition CamelContext.resolveDataFormatDefinition(String name)
          Deprecated. use ModelCamelContext.resolveDataFormatDefinition(String)
 

Methods in org.apache.camel that return types with arguments of type DataFormatDefinition
 Map<String,DataFormatDefinition> CamelContext.getDataFormats()
          Deprecated. use ModelCamelContext.getDataFormats()
 

Method parameters in org.apache.camel with type arguments of type DataFormatDefinition
 void CamelContext.setDataFormats(Map<String,DataFormatDefinition> dataFormats)
          Deprecated. use ModelCamelContext.setDataFormats(java.util.Map)
 

Uses of DataFormatDefinition in org.apache.camel.impl
 

Methods in org.apache.camel.impl that return DataFormatDefinition
 DataFormatDefinition DefaultCamelContext.resolveDataFormatDefinition(String name)
           
 

Methods in org.apache.camel.impl that return types with arguments of type DataFormatDefinition
 Map<String,DataFormatDefinition> DefaultCamelContext.getDataFormats()
           
 

Method parameters in org.apache.camel.impl with type arguments of type DataFormatDefinition
 void DefaultCamelContext.setDataFormats(Map<String,DataFormatDefinition> dataFormats)
           
 

Uses of DataFormatDefinition in org.apache.camel.impl.osgi
 

Methods in org.apache.camel.impl.osgi that return DataFormatDefinition
 DataFormatDefinition Activator.BundleDataFormatResolver.resolveDataFormatDefinition(String name, CamelContext context)
           
 

Uses of DataFormatDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return DataFormatDefinition
 DataFormatDefinition UnmarshalDefinition.getDataFormatType()
           
 DataFormatDefinition MarshalDefinition.getDataFormatType()
           
 DataFormatDefinition ModelCamelContext.resolveDataFormatDefinition(String name)
          Resolve a data format definition given its name
 

Methods in org.apache.camel.model that return types with arguments of type DataFormatDefinition
 Map<String,DataFormatDefinition> ModelCamelContext.getDataFormats()
          Gets the data formats that can be referenced in the routes.
 

Methods in org.apache.camel.model with parameters of type DataFormatDefinition
static DataFormat DataFormatDefinition.getDataFormat(RouteContext routeContext, DataFormatDefinition type, String ref)
          Factory method to create the data format
 Type ProcessorDefinition.marshal(DataFormatDefinition dataFormatType)
          DataFormat: Marshals the in body using the specified DataFormat and sets the output on the out message body.
 void UnmarshalDefinition.setDataFormatType(DataFormatDefinition dataFormatType)
           
 void MarshalDefinition.setDataFormatType(DataFormatDefinition dataFormatType)
           
 Type ProcessorDefinition.unmarshal(DataFormatDefinition dataFormatType)
          DataFormat: Unmarshals the in body using the specified DataFormat and sets the output on the out message body.
 

Method parameters in org.apache.camel.model with type arguments of type DataFormatDefinition
 void ModelCamelContext.setDataFormats(Map<String,DataFormatDefinition> dataFormats)
          Sets the data formats that can be referenced in the routes.
 

Constructors in org.apache.camel.model with parameters of type DataFormatDefinition
MarshalDefinition(DataFormatDefinition dataFormatType)
           
UnmarshalDefinition(DataFormatDefinition dataFormatType)
           
 

Uses of DataFormatDefinition in org.apache.camel.model.dataformat
 

Subclasses of DataFormatDefinition in org.apache.camel.model.dataformat
 class AvroDataFormat
          Represents a avro DataFormat DataFormat
 class Base64DataFormat
          Represents the Base64 DataFormat
 class BeanioDataFormat
          Represents the BeanIO DataFormat
 class BindyDataFormat
          Represents the Bindy DataFormat
 class CastorDataFormat
          Represents a Castor DataFormat.
 class CryptoDataFormat
           
 class CsvDataFormat
          Represents a CSV (Comma Separated Values) DataFormat
 class CustomDataFormat
          Represents the custom DataFormat to lookup using a reference
 class FlatpackDataFormat
          Represents a Flatpack DataFormat.
 class GzipDataFormat
          Represents the GZip DataFormat
 class HL7DataFormat
          Represents a HL7 DataFormat.
 class JaxbDataFormat
          Represents the JAXB2 XML DataFormat
 class JibxDataFormat
          Represents the JiBX XML DataFormat
 class JsonDataFormat
          Represents the Json DataFormat
 class PGPDataFormat
          Represents a pgp DataFormat.
 class ProtobufDataFormat
          Represents a protobuf DataFormat DataFormat
 class RssDataFormat
          Represents the RSS DataFormat.
 class SerializationDataFormat
          Represents the Java Serialization DataFormat
 class SoapJaxbDataFormat
           
 class StringDataFormat
          Represents the String (text based) DataFormat
 class SyslogDataFormat
          Represents a Syslog DataFormat.
 class TidyMarkupDataFormat
          Represents a wellformed HTML document (XML well Formed) DataFormat
 class XMLBeansDataFormat
          Represents the XMLBeans XML DataFormat
 class XmlJsonDataFormat
          Represents a XML-JSON DataFormat.
 class XmlRpcDataFormat
          Represents the XmlRpc XML DataFormat
 class XMLSecurityDataFormat
          Represents as XML Security Encrypter/Decrypter DataFormat
 class XStreamDataFormat
          Represents the XStream XML DataFormat
 class ZipDataFormat
          Represents the ZIP XML DataFormat
 class ZipFileDataFormat
          Represents the ZIP file XML DataFormat.
 

Methods in org.apache.camel.model.dataformat that return types with arguments of type DataFormatDefinition
 Map<String,DataFormatDefinition> DataFormatsDefinition.asMap()
           
 List<DataFormatDefinition> DataFormatsDefinition.getDataFormats()
           
 

Method parameters in org.apache.camel.model.dataformat with type arguments of type DataFormatDefinition
 void DataFormatsDefinition.setDataFormats(List<DataFormatDefinition> dataFormats)
           
 



Apache Camel