Deprecated Methods |
org.apache.camel.builder.RouteBuilder.addRoutes(RoutesBuilder)
will be removed in Camel 3.0. Instead use includeRoutes instead. |
org.apache.camel.model.ProcessorDefinition.aop()
to be removed in the near future. Instead you can use interceptors or processors to do AOP with Camel. |
org.apache.camel.management.mbean.ManagedBrowsableEndpoint.browseMessageAsXml(Integer)
use ManagedBrowsableEndpoint.browseAllMessagesAsXml(Boolean) instead |
org.apache.camel.util.ObjectHelper.close(Closeable, String, Logger)
will be removed in Camel 3.0. Instead use IOHelper.close(java.io.Closeable, String, org.slf4j.Logger) instead |
org.apache.camel.Message.createExchangeId()
will be removed in Camel 3.0. It is discouraged for messages to create exchange ids |
org.apache.camel.util.IOHelper.createIOException(String, Throwable)
IOException support nested exception in Java 1.6. Will be removed in Camel 3.0 |
org.apache.camel.util.IOHelper.createIOException(Throwable)
IOException support nested exception in Java 1.6. Will be removed in Camel 3.0 |
org.apache.camel.converter.jaxp.XmlConverter.createTransfomer()
use XmlConverter.createTransformer() , will be removed in Camel 3.0 |
org.apache.camel.converter.jaxp.StaxConverter.createXMLEventReader(InputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.StaxConverter.createXMLStreamReader(InputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.processor.RedeliveryPolicy.getRedeliverDelay()
will be removed in the near future. Instead use RedeliveryPolicy.getRedeliveryDelay() |
org.apache.camel.model.TryDefinition.handled(boolean)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.CatchDefinition.handled(boolean)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.TryDefinition.handled(Expression)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.CatchDefinition.handled(Expression)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.TryDefinition.handled(Predicate)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.CatchDefinition.handled(Predicate)
will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
from a Processor or use the ProcessorDefinition.throwException(Exception) |
org.apache.camel.model.ProcessorDefinition.idempotentConsumer(IdempotentRepository>)
will be removed in Camel 3.0. Instead use any of the other methods |
org.apache.camel.model.ProcessorDefinition.inOnly()
use ProcessorDefinition.setExchangePattern(org.apache.camel.ExchangePattern) instead |
org.apache.camel.model.ProcessorDefinition.inOut()
use ProcessorDefinition.setExchangePattern(org.apache.camel.ExchangePattern) instead |
org.apache.camel.model.WireTapDefinition.newExchange(Expression)
will be removed in Camel 3.0 Instead use WireTapDefinition.newExchangeBody(org.apache.camel.Expression) |
org.apache.camel.processor.exceptionpolicy.ExceptionPolicyKey.newInstance(Class)
will be removed in the near future. Use the constructor instead. |
org.apache.camel.processor.exceptionpolicy.ExceptionPolicyKey.newInstance(Class, WhenDefinition)
will be removed in the near future. Use the constructor instead. |
org.apache.camel.model.ToDefinition.pattern(ExchangePattern)
will be removed in the near future. Instead use ProcessorDefinition.inOnly()
or ProcessorDefinition.inOut() |
org.apache.camel.builder.DefaultErrorHandlerBuilder.redeliverDelay(long)
will be removed in the near future. Use DefaultErrorHandlerBuilder.redeliveryDelay(long) instead |
org.apache.camel.model.OnExceptionDefinition.redeliverDelay(long)
will be removed in the near future. Instead use OnExceptionDefinition.redeliveryDelay(String) |
org.apache.camel.processor.RedeliveryPolicy.redeliverDelay(long)
will be removed in the near future. Instead use RedeliveryPolicy.redeliveryDelay(long) instead |
org.apache.camel.builder.ProcessorBuilder.removeFaultHeader(String)
will be removed in the near future. Instead use ProcessorBuilder.removeHeader(String) |
org.apache.camel.model.ProcessorDefinition.removeFaultHeader(String)
will be removed in the near future. Instead use ProcessorDefinition.removeHeader(String) |
org.apache.camel.model.ProcessorDefinition.routingSlip(String)
prefer to use ProcessorDefinition.routingSlip(org.apache.camel.Expression) instead |
org.apache.camel.model.ProcessorDefinition.routingSlip(String, boolean)
prefer to use ProcessorDefinition.routingSlip() instead |
org.apache.camel.model.ProcessorDefinition.routingSlip(String, String)
prefer to use ProcessorDefinition.routingSlip(org.apache.camel.Expression, String) instead |
org.apache.camel.model.ProcessorDefinition.routingSlip(String, String, boolean)
prefer to use ProcessorDefinition.routingSlip() instead |
org.apache.camel.util.ValueHolder.set(V)
should be immutable, will be removed in Camel 3.0 |
org.apache.camel.spi.PackageScanClassResolver.setClassLoaders(Set)
will be removed in Camel 3.0. Use PackageScanClassResolver.addClassLoader(ClassLoader) instead. |
org.apache.camel.processor.RedeliveryPolicy.setRedeliverDelay(long)
will be removed in the near future. Instead use RedeliveryPolicy.setRedeliveryDelay(long) |
org.apache.camel.impl.DefaultCamelContext.setRoutes(List)
|
org.apache.camel.management.mbean.ManagedRoute.shutdown()
will be removed in the near future. Use stop and remove instead |
org.apache.camel.management.mbean.ManagedRoute.shutdown(long)
will be removed in the near future. Use stop and remove instead |
org.apache.camel.CamelContext.shutdownRoute(String)
use CamelContext.stopRoute(String) and CamelContext.removeRoute(String) |
org.apache.camel.CamelContext.shutdownRoute(String, long, TimeUnit)
use CamelContext.stopRoute(String, long, java.util.concurrent.TimeUnit) and CamelContext.removeRoute(String) |
org.apache.camel.converter.IOConverter.toByteArray(BufferedReader)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toByteArray(Reader)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toByteArray(String)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toInputStream(BufferedReader)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toInputStream(Document)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toInputStream(DOMSource)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toInputStream(String)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toReader(File)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toReader(InputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toReaderFromSource(Source)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toSAXSource(InputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toSAXSource(Source)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toSAXSource(String)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toSAXSourceFromDOM(DOMSource)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toSource(Document)
use toDOMSource instead |
org.apache.camel.converter.jaxp.XmlConverter.toSource(Node)
use toDOMSource instead |
org.apache.camel.converter.jaxp.XmlConverter.toStreamSource(Source)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toStreamSourceFromDOM(DOMSource)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toStreamSourceFromSAX(SAXSource)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toString(byte[])
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toString(ByteArrayOutputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toString(File)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toString(InputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toString(Node)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.jaxp.XmlConverter.toString(Source)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toString(URL)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toWriter(File)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.converter.IOConverter.toWriter(OutputStream)
will be removed in Camel 3.0. Use the method which has 2 parameters. |
org.apache.camel.model.OnExceptionDefinition.useOriginalBody()
this method will be removed in Camel 3.0, please use OnExceptionDefinition.useOriginalMessage() |
org.apache.camel.model.ProcessorDefinition.wireTap(String, boolean, Expression)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |
org.apache.camel.model.ProcessorDefinition.wireTap(String, boolean, Processor)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |
org.apache.camel.model.ProcessorDefinition.wireTap(String, ExecutorService)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |
org.apache.camel.model.ProcessorDefinition.wireTap(String, Expression)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |
org.apache.camel.model.ProcessorDefinition.wireTap(String, Processor)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |
org.apache.camel.model.ProcessorDefinition.wireTap(String, String)
use the fluent builder from WireTapDefinition , will be removed in Camel 3.0 |