Updated Branches: refs/heads/master 8f457cb48 -> 176acc237
Rearranging orchestrator code AIRAVATA-1011 Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/68f57ff7 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/68f57ff7 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/68f57ff7 Branch: refs/heads/master Commit: 68f57ff7af005750a1632d1c2373b491d0968b23 Parents: 43524f0 Author: lahiru <[email protected]> Authored: Wed Feb 5 12:05:34 2014 -0500 Committer: lahiru <[email protected]> Committed: Wed Feb 5 12:05:34 2014 -0500 ---------------------------------------------------------------------- .../java/org/apache/airavata/orchestrator/cpi/Orchestrator.java | 4 ++-- .../airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/68f57ff7/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/Orchestrator.java ---------------------------------------------------------------------- diff --git a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/Orchestrator.java b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/Orchestrator.java index 83178a1..ab237af 100644 --- a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/Orchestrator.java +++ b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/Orchestrator.java @@ -88,8 +88,8 @@ public interface Orchestrator { * This method can be used to parse the current job data configured in * Registry and validate its status, if it has minimum required parameters to * submit the job this method returns true otherwise this returns false - * @param jobRequest + * @param experimentID * @return */ - boolean validateExperiment(JobRequest jobRequest); + boolean validateExperiment(String experimentID); } http://git-wip-us.apache.org/repos/asf/airavata/blob/68f57ff7/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java ---------------------------------------------------------------------- diff --git a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java index 43c4baa..b75f226 100644 --- a/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java +++ b/modules/orchestrator/orchestrator-core/src/main/java/org/apache/airavata/orchestrator/cpi/impl/SimpleOrchestratorImpl.java @@ -160,7 +160,7 @@ public class SimpleOrchestratorImpl extends AbstractOrchestrator { return true; } - public boolean validateExperiment(JobRequest jobRequest) { - return false; //To change body of implemented methods use File | Settings | File Templates. + public boolean validateExperiment(String experimentID) { + return false; } }
