You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by he...@apache.org on 2011/12/22 00:43:07 UTC

svn commit: r1221943 - in /incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter: ComplexMathService.java MathService.java utils/WorkflowTestUtils.java

Author: heshan
Date: Wed Dec 21 23:43:07 2011
New Revision: 1221943

URL: http://svn.apache.org/viewvc?rev=1221943&view=rev
Log:
Renaming the MathService to ComplexMathService. AIRAVATA-248

Added:
    incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/ComplexMathService.java
      - copied, changed from r1221765, incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/MathService.java
Removed:
    incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/MathService.java
Modified:
    incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java

Copied: incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/ComplexMathService.java (from r1221765, incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/MathService.java)
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/ComplexMathService.java?p2=incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/ComplexMathService.java&p1=incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/MathService.java&r1=1221765&r2=1221943&rev=1221943&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/MathService.java (original)
+++ incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/ComplexMathService.java Wed Dec 21 23:43:07 2011
@@ -21,7 +21,7 @@
 
 package org.apache.airavata.xbaya.interpreter;
 
-public class MathService {
+public class ComplexMathService {
     public int adder(int param1, int param2) {
         return param1 + param2;
     }

Modified: incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java?rev=1221943&r1=1221942&r2=1221943&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java (original)
+++ incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/utils/WorkflowTestUtils.java Wed Dec 21 23:43:07 2011
@@ -24,7 +24,7 @@ import org.apache.airavata.xbaya.XBayaCo
 import org.apache.airavata.xbaya.XBayaConstants;
 import org.apache.airavata.xbaya.interpreter.EchoService;
 import org.apache.airavata.xbaya.interpreter.LevenshteinDistanceService;
-import org.apache.airavata.xbaya.interpreter.MathService;
+import org.apache.airavata.xbaya.interpreter.ComplexMathService;
 import org.apache.airavata.xbaya.interpretor.HeaderConstants;
 import org.apache.airavata.xbaya.interpretor.NameValue;
 import org.apache.airavata.xbaya.interpretor.WorkflowInterpretorSkeleton;
@@ -95,7 +95,7 @@ public class WorkflowTestUtils implement
             AxisService distanceService = AxisService.createService(LevenshteinDistanceService.class.getName(),
                     configContext.getAxisConfiguration());
             configContext.deployService(distanceService);
-            AxisService mathService = AxisService.createService(MathService.class.getName(),
+            AxisService mathService = AxisService.createService(ComplexMathService.class.getName(),
                     configContext.getAxisConfiguration());
             configContext.deployService(mathService);