Package | Description |
---|---|
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
|
org.apache.camel.model.loadbalancer |
The JAXB POJOs for the
Load Balancer EIP pattern for the
XML Configuration.
|
Modifier and Type | Class and Description |
---|---|
class |
DataFormatDefinition
Represents a Camel data format
|
class |
LoadBalancerDefinition
Balances message processing among a number of nodes
|
class |
RouteBuilderDefinition
To refer to a Java
RouteBuilder instance to use. |
Modifier and Type | Class and Description |
---|---|
class |
AvroDataFormat
Avro data format
|
class |
BarcodeDataFormat
Barcode data format
|
class |
Base64DataFormat
Base64 data format
|
class |
BeanioDataFormat
BeanIO data format
|
class |
BindyDataFormat
Bindy data format
|
class |
BoonDataFormat
Boon data format
|
class |
CastorDataFormat
Castor data format
|
class |
CryptoDataFormat
Crypto data format
|
class |
CsvDataFormat
CSV data format
|
class |
CustomDataFormat
Custom data format
|
class |
FlatpackDataFormat
Flatpack data format
|
class |
GzipDataFormat
GZip data format
|
class |
HessianDataFormat
Hessian data format
|
class |
HL7DataFormat
HL7 data format
|
class |
IcalDataFormat
iCal data format
|
class |
JacksonXMLDataFormat
Jackson XML data format
|
class |
JaxbDataFormat
JAXB data format
|
class |
JibxDataFormat
JiBX data format
|
class |
JsonDataFormat
Json data format
|
class |
LZFDataFormat
lzf data format
|
class |
MimeMultipartDataFormat
MIME Multipart data format
|
class |
PGPDataFormat
PGP data format
|
class |
ProtobufDataFormat
Google protobuf data format
|
class |
RssDataFormat
RSS data format
|
class |
SerializationDataFormat
Java Object Serialization data format
|
class |
SoapJaxbDataFormat
SOAP data format
|
class |
StringDataFormat
Represents the String (text based)
DataFormat |
class |
SyslogDataFormat
Syslog data format
|
class |
TarFileDataFormat
Represents the TAR file XML
DataFormat . |
class |
TidyMarkupDataFormat
Tidymark (wellformed HTML) data format
|
class |
UniVocityAbstractDataFormat
Represents the common parts of all uniVocity
DataFormat parsers. |
class |
UniVocityCsvDataFormat
UniVocity CSV data format
|
class |
UniVocityFixedWidthDataFormat
UniVocity fixed-width data format
|
class |
UniVocityTsvDataFormat
UniVocity TSV data format
|
class |
XMLBeansDataFormat
XMLBeans data format
|
class |
XmlJsonDataFormat
xml-json data format
|
class |
XmlRpcDataFormat
xml-rpc data format
|
class |
XMLSecurityDataFormat
xml-security data format
|
class |
XStreamDataFormat
xstream data format
|
class |
YAMLDataFormat
YAML data format
|
class |
ZipDataFormat
zip data format (not for zip files)
|
class |
ZipFileDataFormat
zip-file data format
|
Modifier and Type | Class and Description |
---|---|
class |
CircuitBreakerLoadBalancerDefinition
Circuit break load balancer
The Circuit Breaker load balancer is a stateful pattern that monitors all calls for certain exceptions.
|
class |
CustomLoadBalancerDefinition
Custom load balancer
|
class |
FailoverLoadBalancerDefinition
Failover load balancer
The failover load balancer is capable of trying the next processor in case an Exchange failed with an exception during processing.
|
class |
RandomLoadBalancerDefinition
Random load balancer
The random load balancer selects a random endpoint for each exchange.
|
class |
RoundRobinLoadBalancerDefinition
Round robin load balancer
The round robin load balancer will use the next endpoint for each message.
|
class |
StickyLoadBalancerDefinition
Sticky load balancer
Sticky load balancing using an Expression to calculate a correlation key to perform the sticky load balancing;
rather like jsessionid in the web or JMSXGroupID in JMS.
|
class |
TopicLoadBalancerDefinition
Topic load balancer
The topic load balancer sends to all destinations (rather like JMS Topics)
|
class |
WeightedLoadBalancerDefinition
Weighted load balancer
The weighted load balancing policy allows you to specify a processing load distribution ratio for each server
with respect to others.
|
Apache Camel