You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2011/01/07 02:02:20 UTC

svn commit: r1056146 - /ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java

Author: vanto
Date: Fri Jan  7 01:02:19 2011
New Revision: 1056146

URL: http://svn.apache.org/viewvc?rev=1056146&view=rev
Log:
whitespaces...

Modified:
    ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java

Modified: ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java
URL: http://svn.apache.org/viewvc/ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java?rev=1056146&r1=1056145&r2=1056146&view=diff
==============================================================================
--- ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java (original)
+++ ode/trunk/jbi-karaf-commands/src/main/java/org/apache/ode/karaf/commands/OdeCommandsBase.java Fri Jan  7 01:02:19 2011
@@ -93,16 +93,16 @@ public abstract class OdeCommandsBase ex
 
     protected List<TInstanceInfo> getFilteredInstances(long timeoutInSeconds, String filter)
         throws Exception {
-        InstanceInfoListDocument instances = invoke(LIST_INSTANCES, 
+        InstanceInfoListDocument instances = invoke(LIST_INSTANCES,
                 new Object[] {filter, "pid", 10},
-                new String[] {String.class.getName(), String.class.getName(), int.class.getName()}, 
+                new String[] {String.class.getName(), String.class.getName(), int.class.getName()},
                 timeoutInSeconds);
         if (instances != null) {
             return instances.getInstanceInfoList().getInstanceInfoList();
         }
         return null;
     }
-    
+
     protected List<TInstanceInfo> getAllInstances(long timeoutInSeconds)
             throws Exception {
         InstanceInfoListDocument instances = invoke(LIST_ALL_INSTANCES, null,
@@ -112,7 +112,7 @@ public abstract class OdeCommandsBase ex
         }
         return null;
     }
-         
+
     protected List<TProcessInfo> getProcesses(long timeoutInSeconds)
             throws Exception {
         ProcessInfoListDocument result = invoke(LIST_ALL_PROCESSES, null, null, timeoutInSeconds);
@@ -124,7 +124,7 @@ public abstract class OdeCommandsBase ex
 
     protected InstanceInfoDocument recoverActivity(Long instanceId, Long activityId, String action, long timeoutInSeconds) throws Exception {
         InstanceInfoDocument result = invoke(RECOVER_ACTIVITY, new Object[] {instanceId, activityId, action},
-                new String[] {Long.class.getName(), Long.class.getName(), String.class.getName()}, 
+                new String[] {Long.class.getName(), Long.class.getName(), String.class.getName()},
                 timeoutInSeconds);
         return result;
     }
@@ -133,12 +133,12 @@ public abstract class OdeCommandsBase ex
         invoke(TERMINATE, new Long[] { iid }, new String[] { Long.class
                 .getName() }, timeoutInSeconds);
     }
-    
+
     protected void suspend(Long iid, long timeoutInSeconds) throws Exception {
         invoke(SUSPEND, new Long[] { iid }, new String[] { Long.class
                 .getName() }, timeoutInSeconds);
     }
-    
+
     protected void resume(Long iid, long timeoutInSeconds) throws Exception {
         invoke(RESUME, new Long[] { iid }, new String[] { Long.class
                 .getName() }, timeoutInSeconds);