Uses of Interface
de.unido.ls5.eti.client.VirtualFile

Packages that use VirtualFile
de.unido.ls5.eti.client This package contains the the classes implementing the client side of the jETI communication protocol. 
 

Uses of VirtualFile in de.unido.ls5.eti.client
 

Classes in de.unido.ls5.eti.client that implement VirtualFile
 class ByteArrayVirtualFile
          This is an implementation of VirtualFile that uses a byte array to store the data.
 class FileVirtualFile
          This is an implementation of VirtualFile that uses a real file object as means to store the data.
 

Methods in de.unido.ls5.eti.client that return VirtualFile
 VirtualFile TransferHandler.get(String name)
          Retrieves the VirtualFile Object from the Context.
 VirtualFile EtiConnection.retrieve(String filename)
          Retrieve the requested file from the server.
 VirtualFile EtiConnectionSepp.retrieve(String filename)
          Delegates to EtiConnectionSepp.retrieve(Set).
 

Methods in de.unido.ls5.eti.client that return types with arguments of type VirtualFile
 List<VirtualFile> EtiConnection.retrieve(List<String> filenames)
          Deprecated. use EtiConnection.retrieve(Set) intead.
 List<VirtualFile> EtiConnectionSepp.retrieve(List<String> filenames)
          Delegate to EtiConnectionSepp.retrieve(Set).
 Set<VirtualFile> EtiConnection.retrieve(Set<String> filenames)
          Retrieve the requested files from the server.
 Set<VirtualFile> EtiConnectionSepp.retrieve(Set<String> filenames)
          Retrieve the named files from the server.
 

Methods in de.unido.ls5.eti.client with parameters of type VirtualFile
 void TransferHandler.put(VirtualFile vFile, String name)
          put virtual file into executionEnvironment and set cache entry for name to local URI
 void EtiConnection.store(VirtualFile file)
          Stores a file to the server.
 void EtiConnectionSepp.store(VirtualFile file)
          Delegates to EtiConnectionSepp.store(Set).
 

Method parameters in de.unido.ls5.eti.client with type arguments of type VirtualFile
 void EtiConnection.store(List<VirtualFile> files)
          Deprecated. use EtiConnection.store(Set) instead
 void EtiConnectionSepp.store(List<VirtualFile> files)
          Delegate to EtiConnectionSepp.store(Set).
 void EtiConnection.store(Set<VirtualFile> files)
          Stores the given set of files to the server
 void EtiConnectionSepp.store(Set<VirtualFile> files)
          Store the named files on the server.