public class ProcessorValidator extends Validator
shutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
ProcessorValidator(CamelContext context) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
ProcessorValidator |
setProcessor(Processor processor)
Set processor to use
|
String |
toString() |
void |
validate(Message message,
DataType type)
Perform content validation with specified type using Processor.
|
getCamelContext, getType, setCamelContext, setTypedoResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic ProcessorValidator(CamelContext context)
public void validate(Message message, DataType type) throws ValidationException
validate in class Validatormessage - message to apply validationtype - 'from' data typeValidationException - thrown if any validation error is detectedpublic ProcessorValidator setProcessor(Processor processor)
processor - Processorprotected void doStart() throws Exception
ServiceSupportServiceSupport.doStop() for more details.doStart in class ValidatorExceptionServiceSupport.doStop()protected void doStop() throws Exception
ServiceSupportServiceSupport.doStop() method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext is shutting down.doStop in class ValidatorExceptionServiceSupport.doStart()Apache Camel