Class FtpMessageHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.MessageHandlerSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.file.remote.handler.FileTransferringMessageHandler<org.apache.commons.net.ftp.FTPFile>
org.springframework.integration.ftp.outbound.FtpMessageHandler
- All Implemented Interfaces:
org.reactivestreams.Subscriber<Message<?>>, Aware, BeanFactoryAware, BeanNameAware, DisposableBean, InitializingBean, ApplicationContextAware, Ordered, ComponentSourceAware, ExpressionCapable, Orderable, IntegrationPattern, NamedComponent, IntegrationManagement, TrackableComponent, MessageHandler, reactor.core.CoreSubscriber<Message<?>>
public class FtpMessageHandler
extends FileTransferringMessageHandler<org.apache.commons.net.ftp.FTPFile>
The FTP specific
FileTransferringMessageHandler extension. Based on the
FtpRemoteFileTemplate.- Since:
- 4.1.9
- Author:
- Artem Bilan, Deepak Gunasekaran
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface IntegrationManagement
IntegrationManagement.ManagementOverrides -
Field Summary
Fields inherited from class FileTransferringMessageHandler
remoteFileTemplateFields inherited from class IntegrationObjectSupport
EXPRESSION_PARSER, loggerFields inherited from interface IntegrationManagement
METER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAMEFields inherited from interface Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
ConstructorsConstructorDescriptionFtpMessageHandler(SessionFactory<org.apache.commons.net.ftp.FTPFile> sessionFactory) FtpMessageHandler(FtpRemoteFileTemplate remoteFileTemplate) FtpMessageHandler(FtpRemoteFileTemplate ftpRemoteFileTemplate, FileExistsMode mode) Constructor which sets the FtpRemoteFileTemplate and FileExistsMode. -
Method Summary
Modifier and TypeMethodDescriptionprotected voiddoChmod(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String path, int chmod) Set the mode on the remote file after transfer; the default implementation does nothing.booleanMethods inherited from class FileTransferringMessageHandler
getTemporaryFileSuffix, handleMessageInternal, isUseTemporaryFileName, onInit, setAutoCreateDirectory, setCharset, setChmod, setChmodOctal, setFileNameGenerator, setRemoteDirectoryExpression, setRemoteDirectoryExpressionString, setRemoteFileSeparator, setTemporaryFileSuffix, setTemporaryRemoteDirectoryExpression, setTemporaryRemoteDirectoryExpressionString, setUseTemporaryFileNameMethods inherited from class AbstractMessageHandler
handleMessage, onComplete, onError, onNext, onSubscribe, setObservationConventionMethods inherited from class MessageHandlerSupport
buildSendTimer, destroy, getComponentType, getIntegrationPatternType, getManagedName, getManagedType, getMetricsCaptor, getObservationRegistry, getOrder, getOverrides, isLoggingEnabled, isObserved, registerMetricsCaptor, registerObservationRegistry, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrackMethods inherited from class IntegrationObjectSupport
afterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentDescription, getComponentName, getComponentSource, getConversionService, getExpression, getIntegrationProperties, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentDescription, setComponentName, setComponentSource, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface reactor.core.CoreSubscriber
currentContextMethods inherited from interface IntegrationManagement
getThisAsMethods inherited from interface NamedComponent
getBeanName, getComponentName
-
Constructor Details
-
FtpMessageHandler
-
FtpMessageHandler
-
FtpMessageHandler
Constructor which sets the FtpRemoteFileTemplate and FileExistsMode.- Parameters:
ftpRemoteFileTemplate- the remote file template.mode- the file exists mode.- Since:
- 5.4
-
-
Method Details
-
isChmodCapable
public boolean isChmodCapable()- Overrides:
isChmodCapablein classFileTransferringMessageHandler<org.apache.commons.net.ftp.FTPFile>
-
doChmod
protected void doChmod(RemoteFileTemplate<org.apache.commons.net.ftp.FTPFile> remoteFileTemplate, String path, int chmod) Description copied from class:FileTransferringMessageHandlerSet the mode on the remote file after transfer; the default implementation does nothing.- Overrides:
doChmodin classFileTransferringMessageHandler<org.apache.commons.net.ftp.FTPFile>- Parameters:
remoteFileTemplate- the remote file template.path- the path.chmod- the chmod to set.
-