hudson.plugins.sshslaves
クラス SFTPClient

java.lang.Object
  上位を拡張 com.trilead.ssh2.SFTPv3Client
      上位を拡張 hudson.plugins.sshslaves.SFTPClient

public class SFTPClient
extends com.trilead.ssh2.SFTPv3Client

TODO: moved to Hudson core, so pick it up from there.

作成者:
Kohsuke Kawaguchi

コンストラクタの概要
SFTPClient(com.trilead.ssh2.Connection conn)
           
 
メソッドの概要
 com.trilead.ssh2.SFTPv3FileAttributes _stat(java.lang.String path)
          Graceful SFTPv3Client.stat(String) that returns null if the path doesn't exist.
 void chmod(java.lang.String path, int permissions)
           
 boolean exists(java.lang.String path)
          Checks if the given path exists.
 void mkdirs(java.lang.String path, int posixPermission)
          Makes sure that the directory exists, by creating it if necessary.
 java.io.InputStream read(java.lang.String file)
           
 java.io.OutputStream writeToFile(java.lang.String path)
          Creates a new file and writes to it.
 
クラス com.trilead.ssh2.SFTPv3Client から継承されたメソッド
canonicalPath, close, closeFile, createFile, createFile, createFileTruncate, createFileTruncate, createSymlink, fsetstat, fstat, getCharset, getProtocolVersion, ls, lstat, mkdir, mv, openFileRO, openFileRW, read, readLink, rm, rmdir, setCharset, setstat, stat, write
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

SFTPClient

public SFTPClient(com.trilead.ssh2.Connection conn)
           throws java.io.IOException
例外:
java.io.IOException
メソッドの詳細

exists

public boolean exists(java.lang.String path)
               throws java.io.IOException
Checks if the given path exists.

例外:
java.io.IOException

_stat

public com.trilead.ssh2.SFTPv3FileAttributes _stat(java.lang.String path)
                                            throws java.io.IOException
Graceful SFTPv3Client.stat(String) that returns null if the path doesn't exist.

例外:
java.io.IOException

mkdirs

public void mkdirs(java.lang.String path,
                   int posixPermission)
            throws java.io.IOException
Makes sure that the directory exists, by creating it if necessary.

例外:
java.io.IOException

writeToFile

public java.io.OutputStream writeToFile(java.lang.String path)
                                 throws java.io.IOException
Creates a new file and writes to it.

例外:
java.io.IOException

read

public java.io.InputStream read(java.lang.String file)
                         throws java.io.IOException
例外:
java.io.IOException

chmod

public void chmod(java.lang.String path,
                  int permissions)
           throws java.io.IOException
例外:
java.io.IOException


Copyright © 2010. All Rights Reserved.