Uses of Class
de.unido.ls5.eti.client.EtiLocalException

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

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

Methods in de.unido.ls5.eti.client that throw EtiLocalException
static EtiConnection EtiConnectionFactory.createConnection(URI uri)
          Instanciates an EtiConnection for a given URI.
static EtiConnection EtiConnectionFactory.createConnection(URI uri, String sessionId)
          Instanciates a new EtiConnection for an already existing Session.
 void EtiConnection.endSession()
          End session at jETI server and delete all stored files
 void EtiConnectionSepp.endSession()
          Ends the currently used session.
 void EtiConnection.exec(String tool, Map<String,String> parameters)
          Executes tool at the server with the given parameters.
 void EtiConnectionSepp.exec(String tool, Map<String,String> parameters)
          Execute the given tool with the given parameters.
 void EtiConnection.exec(String tool, String... parameters)
          Executes tool at the server with the given parameter.
 void EtiConnectionSepp.exec(String tool, String... parameters)
           
 void EtiConnection.forward(List<String> filenames, EtiConnection toServer)
          Deprecated. use EtiConnection.forward(Set, EtiConnection) instead.
 void EtiConnectionSepp.forward(List<String> filenames, EtiConnection toServer)
          Delegate to EtiConnectionSepp.forward(Set, EtiConnection).
 void EtiConnection.forward(Set<String> filenames, EtiConnection toServer)
          Forwards a Set of virtual files from the server represented by this connection to the server represented by the toServer connection.
 void EtiConnectionSepp.forward(Set<String> filenames, EtiConnection toServer)
          Tell the server to forward the specified files to another server.
 VirtualFile TransferHandler.get(String name)
          Retrieves the VirtualFile Object from the Context.
 EtiConnection TransferHandler.getEtiConnection(List<URI> uris)
          Retrieve an ETI Connection for a given List of uris following the order of the list.
 EtiConnection TransferHandler.getEtiConnection(URI uri, boolean createNew)
          Looks up the internal LightweightExecutionEnvironment wether there already exists a connection to the jETI toolserver identified by uri.
 void EtiConnection.login(String username, String password)
          Log in to the jETI toolserver with given username and password.
 void EtiConnectionSepp.login(String username, String password)
          Create a session on the server.
 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.
 VirtualFile EtiConnection.retrieve(String filename)
          Retrieve the requested file from the server.
 VirtualFile EtiConnectionSepp.retrieve(String filename)
          Delegates to EtiConnectionSepp.retrieve(Set).
 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.
 void EtiConnection.store(VirtualFile file)
          Stores a file to the server.
 void EtiConnectionSepp.store(VirtualFile file)
          Delegates to EtiConnectionSepp.store(Set).
 void TransferHandler.storeToLocation(List<String> names, URI targetServer)
           
 void TransferHandler.storeToLocation(String[] names, URI targetServer)
          Makes sure that the newest version of all files provided by parameter 'names' is located at the given URI afterwards.