Uses of Class
org.globus.cog.abstraction.impl.file.GeneralException

Packages that use GeneralException
org.globus.cog.abstraction.impl.file   
org.globus.cog.abstraction.impl.fileTransfer   
org.globus.cog.abstraction.interfaces   
 

Uses of GeneralException in org.globus.cog.abstraction.impl.file
 

Methods in org.globus.cog.abstraction.impl.file that throw GeneralException
 void TaskHandlerImpl.submit(Task task, FileResource fileResource)
          submit task to the appropriate file resource to carry out the operation.
protected  Object TaskHandlerImpl.execute(FileResource fileResource, FileOperationSpecification spec)
          execute the command on the file resource.
 FileResource FileResourceCache.getResource(Service service)
           
protected  FileResource CachingDelegatedFileOperationHandler.getResource(Service service)
           
protected  Object CachingDelegatedFileOperationHandler.execute(FileResource fileResource, FileOperationSpecification spec)
           
 

Uses of GeneralException in org.globus.cog.abstraction.impl.fileTransfer
 

Methods in org.globus.cog.abstraction.impl.fileTransfer that throw GeneralException
protected  FileResource DelegatedFileTransferHandler.startResource(Service service)
           
protected  FileResource CachingDelegatedFileTransferHandler.startResource(Service service)
           
 

Uses of GeneralException in org.globus.cog.abstraction.interfaces
 

Methods in org.globus.cog.abstraction.interfaces that throw GeneralException
 void FileResource.start()
          Establishes the connection to the remote service contact
 void FileResource.stop()
          Closes the connection to the file resource
 void FileResource.setCurrentDirectory(String directoryName)
          Changes the current directory to the given directory
 String FileResource.getCurrentDirectory()
          Returns the current working directory
 Collection FileResource.list()
          Returns the list of files in the current working directory
 Collection FileResource.list(String directoryName)
          Returns the list of files in the given directory
 void FileResource.createDirectory(String directoryName)
          Creates a new directory with the given name
 void FileResource.deleteDirectory(String directoryName, boolean force)
          Deletes the specified directory.
 void FileResource.deleteFile(String fileName)
          Deletes the given file
 void FileResource.getFile(String remoteFileName, String localFileName)
          Transfer a remoteFileName file from the file resource and name it as localFileName on the local machine
 void FileResource.putFile(String localFileName, String remoteFileName)
          Upload the localFileName from the local machine to remoteFileName on the file resource
 void FileResource.getDirectory(String remoteDirectoryName, String localDirectoryName)
          Transfer the entire directory remoteDirectoryName from the file resource and name it as localDirectoryName on the local machine
 void FileResource.putDirectory(String localDirectoryName, String remoteDirectoryName)
          Upload the localDirectoryName directory from the local machine to remoteDirectoryName on the file resource
 void FileResource.getMultipleFiles(String[] remoteFileNames, String[] localFileNames)
          Copy an array of files from the file resource into the local file system
 void FileResource.getMultipleFiles(String[] remoteFileNames, String localDirectoryName)
          Copy an array of files from the file resource into the given local directory
 void FileResource.putMultipleFiles(String[] localFileNames, String[] remoteFileNames)
          Copy an array of files from the local file system into the file resource
 void FileResource.putMultipleFiles(String[] localFileNames, String remoteDirectoryName)
          Copy an array of files from the local file system into the given remote directory on this file resource
 void FileResource.rename(String oldFileName, String newFileName)
          Rename a file on the file resource
 void FileResource.changeMode(String fileName, int mode)
          Changes the permissions on the file if authorized to do so
 void FileResource.changeMode(GridFile gridFile)
          Changes the permissions on the file if authorized to do so
 GridFile FileResource.getGridFile(String fileName)
          Get information of a file from the file resource
 boolean FileResource.exists(String fileName)
          Return true if the file exists on the file resource
 boolean FileResource.isDirectory(String directoryName)
          Return true if the name points to a directory in the file resource