Uses of Class
org.ourgrid.common.executor.ExecutorException

Packages that use ExecutorException
org.ourgrid.common.executor   
org.ourgrid.common.gum   
org.ourgrid.common.util   
org.ourgrid.deployer   
org.ourgrid.gridmachine.useragent   
org.ourgrid.peer.ebgum   
 

Uses of ExecutorException in org.ourgrid.common.executor
 

Methods in org.ourgrid.common.executor that throw ExecutorException
 void Win32Executor.chmod(java.io.File file, java.lang.String mode)
           
 void SWANExecutor.chmod(java.io.File file, java.lang.String modeStr)
          Changes the permissions of an especifc file
 void LinuxExecutor.chmod(java.io.File file, java.lang.String modeStr)
           
 void Executor.chmod(java.io.File file, java.lang.String perm)
          Changes the permissions for the indicated file.
protected  java.io.File SWANExecutor.createExecutionScript(java.io.File script, java.lang.String dirName)
          The createExecutionScript will create a script to execute the script with the remote command.
protected  java.io.File Win32Executor.createScript(java.lang.String command, java.lang.String dirName)
           
protected  java.io.File SWANExecutor.createScript(java.lang.String command, java.lang.String dirName)
          Creates an auxiliary file (script) containing the command to be executed.
protected  java.io.File Win32Executor.createScript(java.lang.String command, java.lang.String dirName, java.util.Map envVars)
           
protected  java.io.File SWANExecutor.createScript(java.lang.String command, java.lang.String dirName, java.util.Map envVars)
          Creates an auxiliary file (script) containing the command to be executed.
protected  java.io.File LinuxExecutor.createScript(java.lang.String command, java.lang.String dirName, java.util.Map envVars, ExecutorHandle handle)
          Creates a script file to execute the command passed as paramether.
 ExecutorHandle Win32Executor.execute(java.lang.String dirName, java.lang.String command)
          Execute a command like a OS native script.
 ExecutorHandle SWANExecutor.execute(java.lang.String dirName, java.lang.String command)
          This method implements the command execution feature for SWAN environment.
 ExecutorHandle LinuxExecutor.execute(java.lang.String dirName, java.lang.String command)
          This method implements the command execution feature for Linux environment.
 ExecutorHandle Executor.execute(java.lang.String dirName, java.lang.String command)
          Execute a local command in a specific dirName.
 ExecutorHandle Win32Executor.execute(java.lang.String dirName, java.lang.String command, java.util.Map envVars)
           
 ExecutorHandle SWANExecutor.execute(java.lang.String dirName, java.lang.String command, java.util.Map envVars)
          This method implements the command execution feature for SWAN environment.
 ExecutorHandle LinuxExecutor.execute(java.lang.String dirName, java.lang.String command, java.util.Map envVars)
          This method implements the command execution feature for Linux environment.
 ExecutorHandle Executor.execute(java.lang.String dirName, java.lang.String command, java.util.Map envVars)
          Execute a local command in a specific dirName, with the environment defined by envVars
 ExecutorResult Win32Executor.getResult(ExecutorHandle handle)
           
 ExecutorResult SWANExecutor.getResult(ExecutorHandle handle)
          Returns the result of a execution especified by a handle.
 ExecutorResult LinuxExecutor.getResult(ExecutorHandle handle)
           
 ExecutorResult Executor.getResult(ExecutorHandle handle)
          Blocks until the command finishes and returns its result
 void SWANExecutor.kill(ExecutorHandle handle)
          Kills command that was issued via an execute method
 void LinuxExecutor.kill(ExecutorHandle handle)
           
 void Executor.kill(ExecutorHandle handle)
          Kills command that was issued via an execute method
 

Uses of ExecutorException in org.ourgrid.common.gum
 

Methods in org.ourgrid.common.gum that throw ExecutorException
 ExecutorResult Gum.getResult(ExecutorHandle handle)
          Gives access to the result of execution.
 ExecutorHandle Gum.remoteExecute(java.lang.String remoteDir, java.lang.String command, java.util.Map<java.lang.String,java.lang.String> environmentVars)
          Executes a remote task command in a specific directory on the grid machine.
 

Uses of ExecutorException in org.ourgrid.common.util
 

Methods in org.ourgrid.common.util that throw ExecutorException
static java.lang.String JavaFileUtil.getFilePermissions(java.io.File file)
          This method provides the string representation for file permission on Linux systems.
 

Uses of ExecutorException in org.ourgrid.deployer
 

Methods in org.ourgrid.deployer that throw ExecutorException
 void DeployerTest.restart()
          Tests uaadmin stop option.
 void DeployerTest.startAndStatus()
          Tests uaadmin start option.
 void DeployerTest.stop()
          Tests uaadmin stop option.
 

Uses of ExecutorException in org.ourgrid.gridmachine.useragent
 

Methods in org.ourgrid.gridmachine.useragent that throw ExecutorException
 ExecutorResult UserAgentServerImpl.getResult(ExecutorHandle handle)
           
protected  void UserAgentServerImpl.kill(ExecutorHandle handle)
           
 ExecutorHandle UserAgentServerImpl.remoteExecute(java.lang.String remoteDir, java.lang.String command, java.util.Map<java.lang.String,java.lang.String> envVars)
           
 

Uses of ExecutorException in org.ourgrid.peer.ebgum
 

Methods in org.ourgrid.peer.ebgum that throw ExecutorException
 ExecutorResult GumProxy.getResult(ExecutorHandle handle)
           
 ExecutorHandle GumProxy.remoteExecute(java.lang.String remoteDir, java.lang.String command, java.util.Map<java.lang.String,java.lang.String> envVars)
           
 void EBGumTest.testGetResult()
           
 void EBGumTest.testRemoteExecuteEventQueueStringStringMap()