Uses of Class
org.apache.oodt.cas.pushpull.exceptions.ProtocolException

Packages that use ProtocolException
org.apache.oodt.cas.pushpull.exceptions   
org.apache.oodt.cas.pushpull.protocol   
org.apache.oodt.cas.pushpull.protocol.ftp   
org.apache.oodt.cas.pushpull.protocol.http   
org.apache.oodt.cas.pushpull.protocol.imaps   
org.apache.oodt.cas.pushpull.protocol.local   
org.apache.oodt.cas.pushpull.protocol.sftp   
org.apache.oodt.cas.pushpull.retrievalsystem   
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.exceptions
 

Subclasses of ProtocolException in org.apache.oodt.cas.pushpull.exceptions
 class ProtocolDeletionError
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol
 

Methods in org.apache.oodt.cas.pushpull.protocol that throw ProtocolException
abstract  void Protocol.abortCurFileTransfer()
           
 void Protocol.cd(ProtocolFile file)
          Changes directories to the given directory passed in (insures that the correct path goes to the cd(String) method implemented by inheriting classes
 void ProtocolHandler.cd(Protocol protocol, ProtocolFile file)
           
 void Protocol.cdToHOME()
           
 void ProtocolHandler.cdToHOME(Protocol protocol)
           
protected abstract  void Protocol.cdToRoot()
           
 void Protocol.cdToROOT()
           
 void ProtocolHandler.cdToROOT(Protocol protocol)
           
protected abstract  void Protocol.chDir(ProtocolPath path)
           
 void Protocol.connect(RemoteSite remoteSite)
          Connects the Protocol to the given server
protected abstract  void Protocol.connect(String host, String username, String password)
           
 boolean ProtocolHandler.delete(Protocol protocol, ProtocolFile file)
           
 void Protocol.disconnect()
           
protected abstract  void Protocol.disconnectFromServer()
          Disconnects the Protocol for the server
 void Protocol.download(ProtocolFile file, File toLocalFile)
           
 void Protocol.download(ProtocolFile file, File toLocalFile, long timeout)
           
 Protocol ProtocolHandler.getAppropriateProtocolBySite(RemoteSite remoteSite, boolean allowReuse)
           
protected abstract  ProtocolFile Protocol.getCurrentWorkingDir()
          Returns a string value of current directory -- similar to U*ix pwd()
protected abstract  void Protocol.getFile(ProtocolFile file, File toLocalFile)
          Downloads a file from Protocol server to the location specified by the java.io.File passed in.
 ProtocolFile ProtocolHandler.getProtocolFileFor(Protocol protocol, String file, boolean isDir)
           
 ProtocolFile Protocol.getProtocolFileFor(String file, boolean isDir)
           
protected abstract  boolean Protocol.isConnected()
          Can be used to determine if Protocol is connected
 boolean Protocol.isProtocolConnected()
           
 boolean ProtocolHandler.isProtocolConnected(Protocol protocol)
           
protected abstract  List<ProtocolFile> Protocol.listFiles()
           
 List<ProtocolFile> Protocol.ls()
           
 List<ProtocolFile> ProtocolHandler.ls(Protocol protocol)
           
 List<ProtocolFile> Protocol.ls(ProtocolFile dir)
           
 List<ProtocolFile> Protocol.ls(ProtocolFileFilter filter)
           
 List<ProtocolFile> ProtocolHandler.ls(Protocol protocol, ProtocolFile dir)
           
 List<ProtocolFile> ProtocolHandler.ls(Protocol protocol, ProtocolFileFilter filter)
           
 List<ProtocolFile> ProtocolHandler.nextPage(Protocol protocol)
           
 List<ProtocolFile> ProtocolHandler.nextPage(Protocol protocol, ProtocolFileFilter filter)
           
 ProtocolFile Protocol.pwd()
           
 ProtocolFile ProtocolHandler.pwd(Protocol protocol)
           
protected  void Protocol.reconnect()
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol.ftp
 

Methods in org.apache.oodt.cas.pushpull.protocol.ftp that throw ProtocolException
 void CommonsNetFtpClient.abortCurFileTransfer()
           
 void CogJGlobusFtpClient.abortCurFileTransfer()
           
 void CommonsNetFtpClient.cdToRoot()
           
 void CogJGlobusFtpClient.cdToRoot()
           
protected  void CommonsNetFtpClient.chDir(ProtocolPath path)
          
protected  void CogJGlobusFtpClient.chDir(ProtocolPath path)
           
 void CommonsNetFtpClient.connect(String host, String username, String password)
          
 void CogJGlobusFtpClient.connect(String host, String username, String password)
           
 void CommonsNetFtpClient.disconnectFromServer()
           
 void CogJGlobusFtpClient.disconnectFromServer()
           
 ProtocolFile CommonsNetFtpClient.getCurrentWorkingDir()
          Returns a string value of current directory -- similar to U*ix pwd()
 ProtocolFile CogJGlobusFtpClient.getCurrentWorkingDir()
           
 void CommonsNetFtpClient.getFile(ProtocolFile file, File toLocalFile)
          Downloads a file from Protocol server to the location specified by the java.io.File passed in.
 void CogJGlobusFtpClient.getFile(ProtocolFile file, File toLocalFile)
           
 boolean CommonsNetFtpClient.isConnected()
           
 List<ProtocolFile> CommonsNetFtpClient.listFiles()
           
 List<ProtocolFile> CogJGlobusFtpClient.listFiles()
           
 void CommonsNetFtpClient.sendNoOP()
          
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol.http
 

Methods in org.apache.oodt.cas.pushpull.protocol.http that throw ProtocolException
protected  void HttpClient.chDir(ProtocolPath path)
           
 void HttpClient.connect(String host, String username, String password)
           
 void HttpClient.disconnectFromServer()
           
 ProtocolFile HttpClient.getCurrentWorkingDir()
           
 void HttpClient.getFile(ProtocolFile file, File toLocalFile)
           
 ProtocolFile HttpClient.getProtocolFileFor(String path, boolean isDir)
           
 boolean HttpClient.isConnected()
           
 boolean HttpClient.isDirectory(String link, String virtualPath)
           
 List<ProtocolFile> HttpClient.listFiles()
           
 LinkedList<ProtocolFile> HttpClient.parseLink(HttpPath path)
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol.imaps
 

Methods in org.apache.oodt.cas.pushpull.protocol.imaps that throw ProtocolException
 void ImapsClient.abortCurFileTransfer()
           
 void ImapsClient.cdToRoot()
           
 void ImapsClient.chDir(ProtocolPath path)
           
 void ImapsClient.connect(String host, String username, String password)
           
 void ImapsClient.disconnectFromServer()
           
 ProtocolFile ImapsClient.getCurrentWorkingDir()
           
 void ImapsClient.getFile(ProtocolFile file, File toLocalFile)
           
 boolean ImapsClient.isConnected()
           
 List<ProtocolFile> ImapsClient.listFiles()
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol.local
 

Methods in org.apache.oodt.cas.pushpull.protocol.local that throw ProtocolException
 void LocalClient.abortCurFileTransfer()
           
 void LocalClient.cdToRoot()
           
protected  void LocalClient.chDir(ProtocolPath path)
           
protected  void LocalClient.connect(String host, String username, String password)
           
 void LocalClient.disconnectFromServer()
           
 ProtocolFile LocalClient.getCurrentWorkingDir()
           
 void LocalClient.getFile(ProtocolFile file, File toLocalFile)
           
 boolean LocalClient.isConnected()
           
 List<ProtocolFile> LocalClient.listFiles()
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.protocol.sftp
 

Methods in org.apache.oodt.cas.pushpull.protocol.sftp that throw ProtocolException
 void JschSftpClient.cdToRoot()
           
protected  void JschSftpClient.chDir(ProtocolPath path)
           
protected  void JschSftpClient.connect(String host, String username, String password)
           
 void JschSftpClient.disconnectFromServer()
           
 ProtocolFile JschSftpClient.getCurrentWorkingDir()
           
 void JschSftpClient.getFile(ProtocolFile file, File toLocalFile)
           
 boolean JschSftpClient.isConnected()
           
 List<ProtocolFile> JschSftpClient.listFiles()
           
 

Uses of ProtocolException in org.apache.oodt.cas.pushpull.retrievalsystem
 

Methods in org.apache.oodt.cas.pushpull.retrievalsystem that throw ProtocolException
 boolean FileRetrievalSystem.addToDownloadQueue(RemoteSite remoteSite, String file, String renamingString, File downloadToDir, String uniqueMetadataElement, boolean deleteAfterDownload)
           
 void FileRetrievalSystem.changeToDir(ProtocolFile pFile)
           
 void FileRetrievalSystem.changeToDir(String dir, RemoteSite remoteSite)
           
 void FileRetrievalSystem.changeToHOME(RemoteSite remoteSite)
           
 void FileRetrievalSystem.changeToRoot(RemoteSite remoteSite)
           
 ProtocolFile FileRetrievalSystem.getCurrentFile(RemoteSite remoteSite)
           
 ProtocolFile FileRetrievalSystem.getHomeDir(RemoteSite remoteSite)
           
 ProtocolFile FileRetrievalSystem.getProtocolFile(RemoteSite remoteSite, String file, boolean isDir)
           
 void FileRetrievalSystem.waitUntilAllCurrentDownloadsAreComplete()
           
 



Copyright © 1999-2011 Apache Incubator. All Rights Reserved.