Class ScpToMessageBySftp
java.lang.Object
org.apache.tools.ant.taskdefs.optional.ssh.AbstractSshMessage
org.apache.tools.ant.taskdefs.optional.ssh.ScpToMessage
org.apache.tools.ant.taskdefs.optional.ssh.ScpToMessageBySftp
-
Constructor Summary
ConstructorDescriptionScpToMessageBySftp
(boolean verbose, com.jcraft.jsch.Session session, File aLocalFile, String aRemotePath) Constructor for a local file to remote.ScpToMessageBySftp
(boolean verbose, com.jcraft.jsch.Session session, File aLocalFile, String aRemotePath, boolean preserveLastModified) Constructor for a local file to remote.ScpToMessageBySftp
(boolean verbose, com.jcraft.jsch.Session session, List<Directory> aDirectoryList, String aRemotePath) Constructor for a local directories to remote.ScpToMessageBySftp
(boolean verbose, com.jcraft.jsch.Session session, List<Directory> aDirectoryList, String aRemotePath, boolean preserveLastModified) Constructor for a local directories to remote.ScpToMessageBySftp
(com.jcraft.jsch.Session session, File aLocalFile, String aRemotePath) Constructor for ScpToMessage.ScpToMessageBySftp
(com.jcraft.jsch.Session session, List<Directory> aDirectoryList, String aRemotePath) Constructor for ScpToMessage. -
Method Summary
Modifier and TypeMethodDescriptionvoid
execute()
Carry out the transfer.Get the local file.boolean
Returns true if the last modified time needs to be preserved on the file(s) that get transferred.Get the remote path.Methods inherited from class org.apache.tools.ant.taskdefs.optional.ssh.ScpToMessage
getDirMode, getFileMode, setDirMode, setFileMode
Methods inherited from class org.apache.tools.ant.taskdefs.optional.ssh.AbstractSshMessage
getCompressed, getProgressMonitor, getVerbose, log, logStats, openExecChannel, openSftpChannel, sendAck, setLogListener, trackProgress, waitForAck
-
Constructor Details
-
ScpToMessageBySftp
public ScpToMessageBySftp(boolean verbose, com.jcraft.jsch.Session session, File aLocalFile, String aRemotePath) Constructor for a local file to remote.- Parameters:
verbose
- if true do verbose loggingsession
- the scp session to useaLocalFile
- the local fileaRemotePath
- the remote path- Since:
- Ant 1.7
-
ScpToMessageBySftp
public ScpToMessageBySftp(boolean verbose, com.jcraft.jsch.Session session, File aLocalFile, String aRemotePath, boolean preserveLastModified) Constructor for a local file to remote.- Parameters:
verbose
- if true do verbose loggingsession
- the scp session to useaLocalFile
- the local fileaRemotePath
- the remote pathpreserveLastModified
- True if the last modified time needs to be preserved on the transferred files. False otherwise.- Since:
- Ant 1.9.10
-
ScpToMessageBySftp
public ScpToMessageBySftp(boolean verbose, com.jcraft.jsch.Session session, List<Directory> aDirectoryList, String aRemotePath) Constructor for a local directories to remote.- Parameters:
verbose
- if true do verbose loggingsession
- the scp session to useaDirectoryList
- a list of directoriesaRemotePath
- the remote path- Since:
- Ant 1.7
-
ScpToMessageBySftp
public ScpToMessageBySftp(boolean verbose, com.jcraft.jsch.Session session, List<Directory> aDirectoryList, String aRemotePath, boolean preserveLastModified) Constructor for a local directories to remote.- Parameters:
verbose
- if true do verbose loggingsession
- the scp session to useaDirectoryList
- a list of directoriesaRemotePath
- the remote pathpreserveLastModified
- True if the last modified time needs to be preserved on the transferred files. False otherwise.- Since:
- Ant 1.9.10
-
ScpToMessageBySftp
-
ScpToMessageBySftp
-
-
Method Details
-
execute
Carry out the transfer.- Overrides:
execute
in classScpToMessage
- Throws:
IOException
- on i/o errorscom.jcraft.jsch.JSchException
- on errors detected by scp
-
getLocalFile
Get the local file.- Overrides:
getLocalFile
in classScpToMessage
- Returns:
- the local file.
-
getRemotePath
Get the remote path.- Overrides:
getRemotePath
in classScpToMessage
- Returns:
- the remote path.
-
getPreserveLastModified
public boolean getPreserveLastModified()Returns true if the last modified time needs to be preserved on the file(s) that get transferred. Returns false otherwise.- Overrides:
getPreserveLastModified
in classScpToMessage
- Returns:
- boolean
-