org.apache.camel.component.freemarker
Class FreemarkerEndpoint

java.lang.Object
  extended by org.apache.camel.impl.DefaultEndpoint
      extended by org.apache.camel.impl.ScheduledPollEndpoint
          extended by org.apache.camel.impl.DefaultPollingEndpoint
              extended by org.apache.camel.impl.ProcessorEndpoint
                  extended by org.apache.camel.component.ResourceBasedEndpoint
                      extended by org.apache.camel.component.freemarker.FreemarkerEndpoint
All Implemented Interfaces:
CamelContextAware, Endpoint, IsSingleton, Service, HasId

public class FreemarkerEndpoint
extends ResourceBasedEndpoint

Freemarker endpoint


Field Summary
 
Fields inherited from class org.apache.camel.component.ResourceBasedEndpoint
log
 
Constructor Summary
FreemarkerEndpoint()
           
FreemarkerEndpoint(String uri, Component component, String resourceUri)
           
 
Method Summary
protected  String createEndpointUri()
           
 FreemarkerEndpoint findOrCreateEndpoint(String uri, String newResourceUri)
           
 freemarker.template.Configuration getConfiguration()
           
 String getEncoding()
           
 ExchangePattern getExchangePattern()
           
 boolean isSingleton()
           
protected  void onExchange(Exchange exchange)
           
 void setConfiguration(freemarker.template.Configuration configuration)
          Sets the Freemarker configuration to use
 void setEncoding(String encoding)
          Sets the encoding to be used for loading the template file.
 
Methods inherited from class org.apache.camel.component.ResourceBasedEndpoint
getResource, getResourceAsInputStream, getResourceAsInputStreamWithoutCache, getResourceLoader, getResourceUri, isContentCache, setContentCache, setResourceLoader, setResourceUri
 
Methods inherited from class org.apache.camel.impl.ProcessorEndpoint
createPollingConsumer, createProcessor, createProducer, getProcessor, setProcessor
 
Methods inherited from class org.apache.camel.impl.DefaultPollingEndpoint
createConsumer
 
Methods inherited from class org.apache.camel.impl.ScheduledPollEndpoint
configureConsumer, configureProperties, getConsumerProperties, setConsumerProperties
 
Methods inherited from class org.apache.camel.impl.DefaultEndpoint
createExchange, createExchange, createExchange, equals, getCamelContext, getComponent, getEndpointKey, getEndpointUri, getExchangeType, getId, hashCode, isLenientProperties, isSynchronous, sanitizeUri, setCamelContext, setEndpointUri, setEndpointUriIfNotSpecified, setExchangePattern, setSynchronous, start, stop, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FreemarkerEndpoint

public FreemarkerEndpoint()

FreemarkerEndpoint

public FreemarkerEndpoint(String uri,
                          Component component,
                          String resourceUri)
Method Detail

isSingleton

public boolean isSingleton()
Specified by:
isSingleton in interface IsSingleton
Overrides:
isSingleton in class ProcessorEndpoint

getExchangePattern

public ExchangePattern getExchangePattern()
Overrides:
getExchangePattern in class DefaultEndpoint

createEndpointUri

protected String createEndpointUri()
Overrides:
createEndpointUri in class DefaultEndpoint

setEncoding

public void setEncoding(String encoding)
Sets the encoding to be used for loading the template file.


getEncoding

public String getEncoding()

getConfiguration

public freemarker.template.Configuration getConfiguration()

setConfiguration

public void setConfiguration(freemarker.template.Configuration configuration)
Sets the Freemarker configuration to use


findOrCreateEndpoint

public FreemarkerEndpoint findOrCreateEndpoint(String uri,
                                               String newResourceUri)

onExchange

protected void onExchange(Exchange exchange)
                   throws Exception
Overrides:
onExchange in class ProcessorEndpoint
Throws:
Exception


Apache CAMEL