org.apache.camel.component.file
Class GenericFileProducer<T>
java.lang.Object
org.apache.camel.impl.ServiceSupport
org.apache.camel.impl.DefaultProducer
org.apache.camel.component.file.GenericFileProducer<T>
- All Implemented Interfaces:
- IsSingleton, Processor, Producer, Service
public class GenericFileProducer<T>
- extends DefaultProducer
Generic file producer
Methods inherited from class org.apache.camel.impl.ServiceSupport |
addChildService, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, removeChildService, start, stop |
log
protected final transient org.apache.commons.logging.Log log
endpoint
protected final GenericFileEndpoint<T> endpoint
operations
protected final GenericFileOperations<T> operations
GenericFileProducer
protected GenericFileProducer(GenericFileEndpoint<T> endpoint,
GenericFileOperations<T> operations)
getFileSeparator
protected String getFileSeparator()
normalizePath
protected String normalizePath(String name)
process
public void process(Exchange exchange)
throws Exception
- Description copied from interface:
Processor
- Processes the message exchange
- Parameters:
exchange
- the message exchange
- Throws:
Exception
- if an internal processing error has occurred.
processExchange
protected void processExchange(Exchange exchange)
throws Exception
- Perform the work to process the fileExchange
- Parameters:
exchange
- fileExchange
- Throws:
Exception
- is thrown if some error
handleFailedWrite
protected void handleFailedWrite(Exchange exchange,
Exception exception)
throws Exception
- If we fail writing out a file, we will call this method. This hook is
provided to disconnect from servers or clean up files we created (if needed).
- Throws:
Exception
preWriteCheck
protected void preWriteCheck()
throws Exception
- Perform any actions that need to occur before we write such as connecting to an FTP server etc.
- Throws:
Exception
writeFile
protected void writeFile(Exchange exchange,
String fileName)
throws GenericFileOperationFailedException
- Throws:
GenericFileOperationFailedException
createFileName
protected String createFileName(Exchange exchange)
createTempFileName
protected String createTempFileName(String fileName)
Apache CAMEL