Updated Branches: refs/heads/master 45aeb1fb9 -> 8d163f4db
Removing fetchJobs method : AIRAVATA-1011 Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/8d163f4d Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/8d163f4d Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/8d163f4d Branch: refs/heads/master Commit: 8d163f4db0f76e60b1e7e5a54b6f9a63ae8e7642 Parents: 45aeb1f Author: lahiru <[email protected]> Authored: Wed Feb 12 15:04:05 2014 -0500 Committer: lahiru <[email protected]> Committed: Wed Feb 12 15:04:05 2014 -0500 ---------------------------------------------------------------------- .../airavata/registry/api/OrchestratorRegistry.java | 16 ---------------- 1 file changed, 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/8d163f4d/modules/registry/registry-api/src/main/java/org/apache/airavata/registry/api/OrchestratorRegistry.java ---------------------------------------------------------------------- diff --git a/modules/registry/registry-api/src/main/java/org/apache/airavata/registry/api/OrchestratorRegistry.java b/modules/registry/registry-api/src/main/java/org/apache/airavata/registry/api/OrchestratorRegistry.java index 444ddf3..70cbdda 100644 --- a/modules/registry/registry-api/src/main/java/org/apache/airavata/registry/api/OrchestratorRegistry.java +++ b/modules/registry/registry-api/src/main/java/org/apache/airavata/registry/api/OrchestratorRegistry.java @@ -46,15 +46,6 @@ public interface OrchestratorRegistry extends AiravataSubRegistry { */ boolean addGFACNode(String uri, int nodeID)throws RegistryException; - /** - * This method will add an entry to job management table in database - * With the default initial status of ACCEPTED - * @param userName - * @param experimentID - * @return - * @throws RegistryException - */ - boolean storeExperiment(String userName,String experimentID, String applicationName, String jobRequest)throws RegistryException; /** * This can be used to change the status to any valid status @@ -100,13 +91,6 @@ public interface OrchestratorRegistry extends AiravataSubRegistry { */ List<String> getAllAcceptedJobs()throws RegistryException; - /** - * This will pick one job from jobs in ACCEPTED state and change its status to - * FETCHED - * @return experimentID - * @throws RegistryException - */ - JobRequest fetchAcceptedJob(String experimentID)throws RegistryException; /** * This will return all the hanged jobs, the logic to determine
