You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sa...@apache.org on 2013/05/24 16:28:20 UTC

svn commit: r1486075 - /airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java

Author: samindaw
Date: Fri May 24 14:28:20 2013
New Revision: 1486075

URL: http://svn.apache.org/r1486075
Log:
updating exception order etc.

Modified:
    airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java

Modified: airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java
URL: http://svn.apache.org/viewvc/airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java?rev=1486075&r1=1486074&r2=1486075&view=diff
==============================================================================
--- airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java (original)
+++ airavata/trunk/modules/airavata-client/src/main/java/org/apache/airavata/client/api/WorkflowManager.java Fri May 24 14:28:20 2013
@@ -57,8 +57,8 @@ public interface WorkflowManager {
      * @throws AiravataAPIInvocationException If an error occurred while adding a new workflow.
      * @throws WorkflowAlreadyExistsException If adding workflow already exists for the given owner.
      */
-    public void addOwnerWorkflow (String workflowAsString, String owner) throws AiravataAPIInvocationException,
-            WorkflowAlreadyExistsException;
+    public void addOwnerWorkflow (String workflowAsString, String owner) throws WorkflowAlreadyExistsException,
+			AiravataAPIInvocationException;
 
     /**
      * Adds a new workflow. Workflow is added to users private space. i.e. only user who added the
@@ -69,8 +69,8 @@ public interface WorkflowManager {
      * @throws AiravataAPIInvocationException If an error occurred while adding a new workflow.
      * @throws WorkflowAlreadyExistsException If adding workflow already exists for the given owner.
      */
-    public void addOwnerWorkflow (URI workflowPath, String owner) throws AiravataAPIInvocationException,
-            WorkflowAlreadyExistsException;
+    public void addOwnerWorkflow (URI workflowPath, String owner) throws WorkflowAlreadyExistsException,
+			AiravataAPIInvocationException;
 
     /**
      * Adds a new workflow. Workflow is added to users private space. i.e. only user who added the
@@ -81,8 +81,8 @@ public interface WorkflowManager {
      * @throws AiravataAPIInvocationException If an error occurred while adding a new workflow.
      * @throws WorkflowAlreadyExistsException If adding workflow already exists for the given owner.
      */
-    public void addOwnerWorkflow (Workflow workflow, String owner) throws AiravataAPIInvocationException,
-            WorkflowAlreadyExistsException;
+    public void addOwnerWorkflow (Workflow workflow, String owner) throws WorkflowAlreadyExistsException,
+			AiravataAPIInvocationException;
 
     /**
      * Updates a given workflow. Only user who added the workflow will be able to update it.
@@ -241,8 +241,8 @@ public interface WorkflowManager {
      * @param workflowAsString The new workflow to add and its content as a string.
      * @throws AiravataAPIInvocationException If an error occurred while adding a new workflow.
      */
-    public void addWorkflow (String workflowAsString) throws AiravataAPIInvocationException,
-            WorkflowAlreadyExistsException;
+    public void addWorkflow (String workflowAsString) throws WorkflowAlreadyExistsException,
+    		AiravataAPIInvocationException;
 
     /**
      * Updates a given workflow. Only user who added the workflow will be able to update it.