Uses of Class
com.xebialabs.deployit.exception.RuntimeIOException

Packages that use RuntimeIOException
com.xebialabs.deployit.hostsession The host session framework. 
com.xebialabs.deployit.hostsession.cifs   
com.xebialabs.deployit.hostsession.common Common classes shared by implementations of the host session framework. 
com.xebialabs.deployit.hostsession.local Local implementations of the host session framework. 
com.xebialabs.deployit.hostsession.ssh SSH implementations of the host session framework. 
com.xebialabs.deployit.util Provides a number of utility classes. 
 

Uses of RuntimeIOException in com.xebialabs.deployit.hostsession
 

Methods in com.xebialabs.deployit.hostsession that throw RuntimeIOException
 boolean HostFile.canExecute()
          Tests whether the file or directory can be executed.
 boolean HostFile.canRead()
          Tests whether the file or directory can be read.
 boolean HostFile.canWrite()
          Tests whether the file or directory can be written.
static void HostFileUtils.copyDirectory(HostFile srcDir, HostFile dstDir)
          Copies a directory recursively.
static void HostFileUtils.copyDirectory(HostFile srcDir, HostFile dstDir, HostFileInputStreamTransformer transformer)
          Copies a directory recursively.
static void HostFileUtils.copyFile(HostFile srcFile, HostFile dstFile)
          Copies a regular file.
static void HostFileUtils.copyFile(HostFile srcFile, HostFile dstFile, HostFileInputStreamTransformer transformer)
          Copies a regular file.
 HostFile HostSession.copyToTemporaryFile(java.io.File localFile)
          Copies a local file to a temporary file on the host.
 HostFile HostSession.copyToTemporaryFile(org.springframework.core.io.Resource resource)
          Copies a resource to a temporary file on the host.
 boolean HostFile.delete()
          Deletes the host file or directory.
 boolean HostFile.deleteRecursively()
          Deletes the host directory recursively, first deleting its contents and then the directory itself.
 boolean HostFile.deleteRecursively(java.lang.String exclusion)
          Deprecated. Will be removed very soon.
 int HostSession.execute(CommandExecutionCallbackHandler handler, java.lang.String... commandLine)
          Executes a command with its arguments.
 boolean HostFile.exists()
          Tests whether the file or directory exists.
 java.io.InputStream HostFile.get()
          Opens the host file for reading.
 void HostFile.get(java.io.File file)
          Copies the content of the host file to a file.
 void HostFile.get(java.io.OutputStream out)
          Copies the content of the host file to a stream.
 HostFile HostSession.getFile(HostFile parent, java.lang.String child)
          Creates a reference to a file in a directory on the host.
 HostFile HostFile.getFile(java.lang.String name)
          Returns a new HostFile with this file as its parent.
 HostFile HostSession.getFile(java.lang.String hostPath)
          Creates a reference to a file on the host.
 HostFile HostSession.getTempFile(java.lang.String nameTemplate)
          Creates a reference to a temporary file on the host.
 HostFile HostSession.getTempFile(java.lang.String prefix, java.lang.String suffix)
          Creates a reference to a temporary file on the host.
 boolean HostFile.isDirectory()
          Tests whether this file is a directory.
 long HostFile.length()
          Returns the length of this file.
 java.util.List<java.lang.String> HostFile.list()
          Returns a list of strings naming the files and directories contained by the host directory.
 java.util.List<HostFile> HostFile.listFiles()
          Returns a list of HostFile objects for the files and directories contained by the host directory.
 void HostFile.mkdir()
          Creates the directory on the host.
 void HostFile.mkdirs()
          Creates the directory on the host, including any missing parent directories if needed.
 void HostFile.put(java.io.File file)
          Copies the contact of a local file to the host file.
 void HostFile.put(java.io.InputStream in, long length)
          Copies the contents of a stream to the host file.
 java.io.OutputStream HostFile.put(long length)
          Opens the host file for writing.
 void HostFile.put(org.springframework.core.io.Resource resource)
          Copies the contact of a resource to the host file.
 

Uses of RuntimeIOException in com.xebialabs.deployit.hostsession.cifs
 

Methods in com.xebialabs.deployit.hostsession.cifs that throw RuntimeIOException
 boolean CifsHostFile.canExecute()
           
 boolean CifsHostFile.canRead()
           
 boolean CifsHostFile.canWrite()
           
 boolean CifsHostFile.delete()
           
 boolean CifsHostFile.deleteRecursively()
           
 int CifsTelnetHostSession.execute(CommandExecutionCallbackHandler handler, java.lang.String... commandLine)
           
 boolean CifsHostFile.exists()
           
 java.io.InputStream CifsHostFile.get()
           
 HostFile CifsTelnetHostSession.getFile(HostFile parent, java.lang.String child)
           
 HostFile CifsTelnetHostSession.getFile(java.lang.String hostPath)
           
 HostFile CifsTelnetHostSession.getTempFile(java.lang.String prefix, java.lang.String suffix)
           
 boolean CifsHostFile.isDirectory()
           
 long CifsHostFile.length()
           
 java.util.List<java.lang.String> CifsHostFile.list()
           
 void CifsHostFile.mkdir()
           
 void CifsHostFile.mkdirs()
           
 void CifsHostFile.moveTo(HostFile destFile)
           
 java.io.OutputStream CifsHostFile.put(long length)
           
 

Uses of RuntimeIOException in com.xebialabs.deployit.hostsession.common
 

Methods in com.xebialabs.deployit.hostsession.common that throw RuntimeIOException
 HostFile AbstractHostSession.copyToTemporaryFile(java.io.File localFile)
           
 HostFile AbstractHostSession.copyToTemporaryFile(org.springframework.core.io.Resource resource)
           
 boolean AbstractHostFile.deleteRecursively()
           
 boolean AbstractHostFile.deleteRecursively(java.lang.String exclusion)
           
 void AbstractHostFile.get(java.io.File file)
           
 void AbstractHostFile.get(java.io.OutputStream out)
           
 HostFile AbstractHostSession.getTempFile(java.lang.String nameTemplate)
           
protected  HostFile AbstractHostSession.getTemporaryDirectory()
           
 java.util.List<HostFile> AbstractHostFile.listFiles()
           
 void AbstractHostFile.put(java.io.File file)
           
 void AbstractHostFile.put(java.io.InputStream in, long length)
           
 void AbstractHostFile.put(org.springframework.core.io.Resource resource)
           
 

Uses of RuntimeIOException in com.xebialabs.deployit.hostsession.local
 

Methods in com.xebialabs.deployit.hostsession.local that throw RuntimeIOException
 int LocalHostSession.execute(CommandExecutionCallbackHandler handler, java.lang.String... commandLine)
           
 HostFile LocalHostSession.getFile(HostFile parent, java.lang.String child)
           
 HostFile LocalHostSession.getFile(java.lang.String hostPath)
           
 HostFile LocalHostSession.getTempFile(java.lang.String prefix, java.lang.String suffix)
           
 

Uses of RuntimeIOException in com.xebialabs.deployit.hostsession.ssh
 

Methods in com.xebialabs.deployit.hostsession.ssh that throw RuntimeIOException
 int SshSudoHostSession.execute(CommandExecutionCallbackHandler handler, java.util.Map<java.lang.String,java.lang.String> inputResponse, java.lang.String... commandLine)
           
protected  HostFile SshSudoHostSession.getFile(java.lang.String hostPath, boolean isTempFile)
           
protected  HostFile SshScpHostSession.getFile(java.lang.String hostPath, boolean isTempFile)
           
 HostFile SshSftpHostSession.getFile(java.lang.String hostPath, boolean isTempFile)
           
 

Uses of RuntimeIOException in com.xebialabs.deployit.util
 

Methods in com.xebialabs.deployit.util that throw RuntimeIOException
static byte[] ExtendedResourceUtils.toByteArray(org.springframework.core.io.Resource resource)
          Reads the contents of a Resource into a byte array.
static java.lang.String ExtendedResourceUtils.toString(org.springframework.core.io.Resource resource)
          Reads the contents of a Resource into a String.
 



Copyright © 2010. All Rights Reserved.