org.apache.camel.component
Class ResourceEndpoint
java.lang.Object
org.apache.camel.support.ServiceSupport
org.apache.camel.impl.DefaultEndpoint
org.apache.camel.impl.ScheduledPollEndpoint
org.apache.camel.impl.DefaultPollingEndpoint
org.apache.camel.impl.ProcessorEndpoint
org.apache.camel.component.ResourceEndpoint
- All Implemented Interfaces:
- CamelContextAware, Endpoint, IsSingleton, Service, ShutdownableService, HasId, StatefulService, SuspendableService
public abstract class ResourceEndpoint
- extends ProcessorEndpoint
A useful base class for endpoints which depend on a resource
such as things like Velocity or XQuery based components.
Field Summary |
protected org.slf4j.Logger |
log
|
Methods inherited from class org.apache.camel.impl.DefaultEndpoint |
createEndpointUri, createExchange, createExchange, createExchange, doStart, doStop, equals, getCamelContext, getComponent, getEndpointConfiguration, getEndpointKey, getEndpointUri, getExchangePattern, getExchangeType, getId, hashCode, isLenientProperties, isSynchronous, setCamelContext, setEndpointUri, setEndpointUriIfNotSpecified, setExchangePattern, setSynchronous, toString |
Methods inherited from class org.apache.camel.support.ServiceSupport |
doResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspended, isSuspending, resume, shutdown, start, stop, suspend |
log
protected final transient org.slf4j.Logger log
ResourceEndpoint
public ResourceEndpoint()
ResourceEndpoint
public ResourceEndpoint(String endpointUri,
Component component,
String resourceUri)
getResourceAsInputStream
public InputStream getResourceAsInputStream()
throws IOException
- Gets the resource as an input stream considering the cache flag as well.
If cache is enabled then the resource content is cached in an internal buffer and this content is
returned to avoid loading the resource over and over again.
- Returns:
- the input stream
- Throws:
IOException
- is thrown if error loading the content of the resource to the local cache buffer
getResourceAsInputStreamWithoutCache
protected InputStream getResourceAsInputStreamWithoutCache()
throws IOException
- Throws:
IOException
isContentCache
public boolean isContentCache()
setContentCache
public void setContentCache(boolean contentCache)
- Sets whether to use resource content cache or not - default is false.
- See Also:
getResourceAsInputStream()
getResourceUri
public String getResourceUri()
setResourceUri
public void setResourceUri(String resourceUri)
Apache CAMEL