Uses of Class
com.gubutech.xload.XloadFile

Packages that use XloadFile
com.gubutech.xload Provides classes and interfaces for uploading of files and management of files and directories on an application server. 
 

Uses of XloadFile in com.gubutech.xload
 

Methods in com.gubutech.xload that return XloadFile
 XloadFile XloadDirectory.getFile(java.lang.String fileName)
          Returns a file represented as an XloadFile object if one exists in the directory represented by this object.
abstract  XloadFile XloadFile.copyTo(java.lang.String dir)
          Copies this file to another directory.
abstract  XloadFile XloadFile.copyTo(XloadDirectory dir)
          Copies this file to another directory.
abstract  XloadFile XloadFile.moveTo(java.lang.String dir)
          Moves this file to a directory.
abstract  XloadFile XloadFile.moveTo(XloadDirectory dir)
          Moves this file to a directory.
 XloadFile XloadFileException.getFile()
          Returns the XloadFile that was being copied or moved, that caused a file naming clash inside the new directory.
 XloadFile XloadFileUpload.getFile(int fileSequenceNumber)
          Returns the appropriate file related to the sequence number given from the FIFO (First In First Out) list described in the introduction of this class.
 XloadFile XloadFileUpload.getNext()
          This method works in conjunction with the hasMore family of methods of this class.
 XloadFile XloadFileUpload.getMemoryFile()
          Returns the memory file deployment associated with this file upload.
 XloadFile XloadFileUpload.getFile(java.lang.String dir)
          Gets access to the first file deployment for this file upload that exists in the given directory from the FIFO (First In First Out) list described in the introduction for this class.
 XloadFile XloadFileUpload.getFile(XloadDirectory dir)
          Gets access to the first file deployment for this file upload that exists in the given directory from the FIFO (First In First Out) list described in the introduction for this class.
 XloadFile XloadManager.getAnyFile(java.lang.String dir, java.lang.String fileName)
          Gets access to a file that is designated by a given directory and filename.
 XloadFile XloadManager.getFile(java.lang.String paramName, java.lang.String dir)
          Gets access to the first file deployment from the list, in the designated directory dir for a file upload designated on the client side by paramName.
 XloadFile XloadManager.getFile(java.lang.String paramName)
          Gets access to the first file deployment from the list, for a file upload designated on the client side by paramName.
 XloadFile XloadManager.getFile(java.lang.String paramName, XloadDirectory dir)
          Gets access to the first file deployment from the list, in designated directory dir for a file upload designated on the client side by paramName.
 XloadFile XloadManager.getMemoryFile(java.lang.String paramName)
          Returns an XloadFile that represents a file deployment to memory for the file upload designated on the client side by paramName.