|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.camel.impl.ServiceSupport
org.apache.camel.component.bean.BeanProcessor
public class BeanProcessor
A Processor which converts the inbound exchange to a method
invocation on a POJO
| Constructor Summary | |
|---|---|
BeanProcessor(BeanHolder beanHolder)
|
|
BeanProcessor(Object pojo,
BeanInfo beanInfo)
|
|
BeanProcessor(Object pojo,
CamelContext camelContext)
|
|
BeanProcessor(Object pojo,
CamelContext camelContext,
ParameterMappingStrategy parameterMappingStrategy)
|
|
| Method Summary | |
|---|---|
protected void |
doStart()
|
protected void |
doStop()
|
Object |
getBean()
|
String |
getMethod()
|
Method |
getMethodObject()
|
protected Processor |
getProcessor()
|
boolean |
isMultiParameterArray()
|
boolean |
isShorthandMethod()
|
void |
process(Exchange exchange)
Processes the message exchange |
boolean |
process(Exchange exchange,
AsyncCallback callback)
Processes the message exchange. |
void |
setMethod(String method)
Sets the method name to use |
void |
setMethodObject(Method methodObject)
|
void |
setMultiParameterArray(boolean mpArray)
|
void |
setShorthandMethod(boolean shorthandMethod)
Sets whether to support getter style method name, so you can say the method is called 'name' but it will invoke the 'getName' method. |
String |
toString()
|
| Methods inherited from class org.apache.camel.impl.ServiceSupport |
|---|
addChildService, doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspended, isSuspending, removeChildService, resume, shutdown, start, start, stop, suspend |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public BeanProcessor(Object pojo,
BeanInfo beanInfo)
public BeanProcessor(Object pojo,
CamelContext camelContext,
ParameterMappingStrategy parameterMappingStrategy)
public BeanProcessor(Object pojo,
CamelContext camelContext)
public BeanProcessor(BeanHolder beanHolder)
| Method Detail |
|---|
public String toString()
toString in class Object
public void process(Exchange exchange)
throws Exception
Processor
process in interface Processorexchange - the message exchange
Exception - if an internal processing error has occurred.
public boolean process(Exchange exchange,
AsyncCallback callback)
AsyncProcessorProcessor.process(org.apache.camel.Exchange), but the caller supports having the exchange asynchronously processed.
If there was a failure processing then the caused Exception would be set on the Exchange.
process in interface AsyncProcessorexchange - the message exchangecallback - the AsyncCallback will be invoked when the processing of the exchange is completed.
If the exchange is completed synchronously, then the callback is also invoked synchronously.
The callback should therefore be careful of starting recursive loop.
AsyncProcessorHelper.process(AsyncProcessor, Exchange, AsyncCallback)protected Processor getProcessor()
public Object getBean()
public Method getMethodObject()
public void setMethodObject(Method methodObject)
public String getMethod()
public boolean isMultiParameterArray()
public void setMultiParameterArray(boolean mpArray)
public void setMethod(String method)
public boolean isShorthandMethod()
public void setShorthandMethod(boolean shorthandMethod)
protected void doStart()
throws Exception
doStart in class ServiceSupportException
protected void doStop()
throws Exception
doStop in class ServiceSupportException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||