Uses of Class
org.ow2.jasmine.jadort.api.JadortServiceException

Packages that use JadortServiceException
org.ow2.jasmine.jadort.api   
org.ow2.jasmine.jadort.service.implementation   
 

Uses of JadortServiceException in org.ow2.jasmine.jadort.api
 

Subclasses of JadortServiceException in org.ow2.jasmine.jadort.api
 class InvalidStepException
          Exception thrown when the current operation is not in the expected step.
 

Methods in org.ow2.jasmine.jadort.api that throw JadortServiceException
 void IJadortService.abortServer(ServerBean server)
          Aborts the task a ServerBean is currently doing.
 void IJadortService.abortWorker(WorkerBean worker)
          Aborts the task a WorkerBean is currently doing.
 boolean IJadortService.checkServer(ServerBean server)
          Checks if the problem on a given ServerBean has been resolved.
 boolean IJadortService.checkWorker(WorkerBean worker)
          Checks if the problem on a given WorkerBean has been resolved.
 void IJadortService.createNewOperation(java.lang.String newOperationName)
          Create a new operation
 void IJadortService.deleteOperation(OperationStateBean operation)
          Delete an Operation from the operation list
 OperationStateBean IJadortService.getCurrentOperation()
          Returns the current operation.
 OperationStateBean.Step IJadortService.getCurrentStep()
          Returns the current Step of the current operation
 java.util.List<OperationStateBean> IJadortService.getOperationsList()
          Returns the list of operations
 void IJadortService.ignoreServer(ServerBean server)
          Ignores the error on a given ServerBean.
 void IJadortService.ignoreWorker(WorkerBean worker)
          Ignores the error on a given WorkerBean.
 void IJadortService.loadTopology(java.lang.String topology)
          Loads the topology using an XML stream passed as a string.
 void IJadortService.next()
          goes to next step
 void IJadortService.previous()
          Goes back to the previous step.
 void IJadortService.restartServer(ServerBean server)
          Restarts a ServerBean that's in an error.
 void IJadortService.restartWorker(WorkerBean worker)
          Restarts a WorkerBean that's in an error.
 void IJadortService.selectApplication(java.net.URL url)
          Create a new application
 void IJadortService.selectGroup(GroupBean selectedGroup)
          Select the group that JaDOrT will be maintaining or migrating
 void IJadortService.selectOperation(OperationStateBean operation)
          Select an Operation from the operation list
 void IJadortService.selectOperationType(IJadortService.OperationType operationType)
          Select the operation type
 void IJadortService.selectServers(java.util.List<ServerBean> selectedServers)
          Select the servers to process
 void IJadortService.selectVMImage(VMImageBean selectedVMImage)
          Select a VM image from the VM images list.
 void IJadortService.selectVMImage(VMImageBean selectedVMImage, ServerBean server)
          Select a VM image from the VM images list for a given server.
 

Uses of JadortServiceException in org.ow2.jasmine.jadort.service.implementation
 

Methods in org.ow2.jasmine.jadort.service.implementation that throw JadortServiceException
 void JadortServiceStatefulBean.abortServer(ServerBean server)
          Aborts the task a ServerBean is currently doing.
 void JadortServiceStatefulBean.abortWorker(WorkerBean worker)
          Aborts the task a WorkerBean is currently doing.
 boolean JadortServiceStatefulBean.checkServer(ServerBean server)
          Checks if the problem on a given ServerBean has been resolved.
protected  void StepManager.checkStep(OperationStateBean.Step... steps)
          This method checks if an method (or command) can be called in the current step.
 boolean JadortServiceStatefulBean.checkWorker(WorkerBean worker)
          Checks if the problem on a given WorkerBean has been resolved.
 void JadortServiceStatefulBean.createNewOperation(java.lang.String newOperationName)
          Create a new operation
 void JadortServiceStatefulBean.deleteOperation(OperationStateBean selectedOperation)
          Delete an Operation from the operation list
static void JMSSender.deploy(OperationStateBean operation, ServerProgressBean serverProgress, java.lang.String applicationName)
          Deploy an application on the server.
static void JMSSender.destroyVM(OperationStateBean operation, ServerProgressBean serverProgress, java.lang.String vmName, boolean checkIfHostHalted)
          Destroys a VM.
static void JMSSender.erase(OperationStateBean operation, ServerProgressBean serverProgress, java.lang.String applicationName)
          Erases an application on the server.
protected  void StepManager.executeNextStep()
          Executes the actions for going to the next step.
protected  void StepManager.executePreviousStep()
          Executes the actions for going to the previous step.
protected  java.util.List<GroupBean> ActionManager.fetchGroups(boolean checkConnectivity)
          Returns the list of groups obtained from the loaded topology in the current operation.
protected  void ActionManager.fillApplications(GroupBean groupBean)
          Fills the applications of a GroupBean and all ServerBeans it contains.
protected  void ActionManager.fillVMImages(GroupBean groupBean)
          Fills the vmImages fields of a GroupBean.
 OperationStateBean JadortServiceStatefulBean.getCurrentOperation()
          Returns the current operation.
 java.util.List<OperationStateBean> JadortServiceStatefulBean.getOperationsList()
          Returns the list of operations
protected  ServerProgressBean ActionManager.getServerProgress(ServerBean server)
          Returns the serverProgress object of a server
protected  WorkerProgressBean ActionManager.getWorkerProgress(WorkerBean worker)
          Returns the workerProgress object of a worker
 void JadortServiceStatefulBean.ignoreServer(ServerBean server)
          Ignores the error on a given ServerBean.
 void JadortServiceStatefulBean.ignoreWorker(WorkerBean worker)
          Ignores the error on a given WorkerBean.
 void JadortServiceStatefulBean.loadTopology(java.lang.String topology)
          Loads the topology using an XML stream passed as a string.
 void JadortServiceStatefulBean.next()
          goes to next step
 void JadortServiceStatefulBean.previous()
          Goes back to the previous step.
protected  void ActionManager.refreshActiveSessions()
           
 void JadortServiceStatefulBean.restartServer(ServerBean server)
          Restarts a ServerBean that's in an error.
 void JadortServiceStatefulBean.restartWorker(WorkerBean worker)
          Restarts a WorkerBean that's in an error.
 void JadortServiceStatefulBean.selectApplication(java.net.URL url)
          Create a new application
 void JadortServiceStatefulBean.selectGroup(GroupBean selectedGroup)
          Select the group that JaDOrT will be maintaining or migrating
 void JadortServiceStatefulBean.selectOperation(OperationStateBean selectedOperation)
          Select an Operation from the operation list
 void JadortServiceStatefulBean.selectOperationType(IJadortService.OperationType operationType)
          Select the operation type
 void JadortServiceStatefulBean.selectServers(java.util.List<ServerBean> selectedServers)
          Select the servers to process
 void JadortServiceStatefulBean.selectVMImage(VMImageBean selectedVMImage)
          Select a VM image from the VM images list.
 void JadortServiceStatefulBean.selectVMImage(VMImageBean selectedVMImage, ServerBean server)
          Select a VM image from the VM images list for a given server.
static void JMSSender.setAsDefault(OperationStateBean operation, ServerProgressBean serverProgress, java.lang.String applicationName)
          Set a given application as the default version.
static void JMSSender.startVM(OperationStateBean operation, ServerProgressBean serverProgress, boolean useTarget, java.lang.String vmName)
          Starts a VM.
static void JMSSender.stopVM(OperationStateBean operation, ServerProgressBean serverProgress, boolean useTarget, java.lang.String vmName)
          Stop a VM.
static void JMSSender.undeploy(OperationStateBean operation, ServerProgressBean serverProgress, java.lang.String applicationName)
          Undeploy an application on the server.
 



Copyright © 2010 OW2 Consortium. All Rights Reserved.