| Package | Description |
|---|---|
| org.apache.camel.impl |
Default implementation classes for Camel Core
|
| org.apache.camel.impl.lw | |
| org.apache.camel.model |
The JAXB POJOs for the
XML
Configuration of the routing rules.
|
| org.apache.camel.model.validator |
The JAXB POJOs for the
Transformers used to
transform message contents according to declared data types inside
components
|
| org.apache.camel.reifier.validator |
| Modifier and Type | Method and Description |
|---|---|
List<ValidatorDefinition> |
DefaultModel.getValidators() |
List<ValidatorDefinition> |
DefaultCamelContext.getValidators() |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultCamelContext.registerValidator(ValidatorDefinition def) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultModel.setValidators(List<ValidatorDefinition> validators) |
void |
DefaultCamelContext.setValidators(List<ValidatorDefinition> validators) |
| Modifier and Type | Method and Description |
|---|---|
List<ValidatorDefinition> |
LightweightCamelContext.getValidators() |
| Modifier and Type | Method and Description |
|---|---|
void |
LightweightCamelContext.registerValidator(ValidatorDefinition validator) |
| Modifier and Type | Method and Description |
|---|---|
void |
LightweightCamelContext.setValidators(List<ValidatorDefinition> validators) |
| Modifier and Type | Method and Description |
|---|---|
List<ValidatorDefinition> |
Model.getValidators()
Gets the validators that can be referenced in the routes.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ModelCamelContext.registerValidator(ValidatorDefinition validator) |
| Modifier and Type | Method and Description |
|---|---|
void |
Model.setValidators(List<ValidatorDefinition> validators)
Sets the validators that can be referenced in the routes.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CustomValidatorDefinition
Represents a CustomValidator.
|
class |
EndpointValidatorDefinition
Represents an endpoint
Validator which leverages camel validator
component such as Validator
Component and Bean
Validator Component to perform content validation. |
class |
PredicateValidatorDefinition
Represents a predicate
Validator which leverages expression or
predicates to perform content validation. |
| Modifier and Type | Method and Description |
|---|---|
List<ValidatorDefinition> |
ValidatorsDefinition.getValidators() |
| Modifier and Type | Method and Description |
|---|---|
void |
ValidatorsDefinition.setValidators(List<ValidatorDefinition> validators)
The configured transformers
|
| Modifier and Type | Method and Description |
|---|---|
static ValidatorReifier<? extends ValidatorDefinition> |
ValidatorReifier.reifier(org.apache.camel.CamelContext camelContext,
ValidatorDefinition definition) |
| Modifier and Type | Method and Description |
|---|---|
static ValidatorReifier<? extends ValidatorDefinition> |
ValidatorReifier.reifier(org.apache.camel.CamelContext camelContext,
ValidatorDefinition definition) |
| Modifier and Type | Method and Description |
|---|---|
static void |
ValidatorReifier.registerReifier(Class<?> processorClass,
BiFunction<org.apache.camel.CamelContext,ValidatorDefinition,ValidatorReifier<? extends ValidatorDefinition>> creator) |
static void |
ValidatorReifier.registerReifier(Class<?> processorClass,
BiFunction<org.apache.camel.CamelContext,ValidatorDefinition,ValidatorReifier<? extends ValidatorDefinition>> creator) |
| Constructor and Description |
|---|
CustomValidatorReifier(org.apache.camel.CamelContext camelContext,
ValidatorDefinition definition) |
EndpointValidatorReifier(org.apache.camel.CamelContext camelContext,
ValidatorDefinition definition) |
PredicateValidatorReifier(org.apache.camel.CamelContext camelContext,
ValidatorDefinition definition) |
Apache Camel