]> SALOME platform Git repositories - modules/gde.git/commitdiff
Salome HOME
add parameters to CommandTO
authormordicus <mordicus@HP-8560w>
Mon, 3 Aug 2015 14:56:00 +0000 (16:56 +0200)
committermordicus <mordicus@HP-8560w>
Mon, 3 Aug 2015 14:56:00 +0000 (16:56 +0200)
projects/GDE_App/GDE-ejb/src/java/com/edf/gde/transferables/CommandTO.java

index b989d7518792593f1f943ce1472b758d5f0e54cb..c554811e0cfcfa229e4585008d7c18fa529e18fd 100644 (file)
@@ -1,11 +1,15 @@
 package com.edf.gde.transferables;
 
+import java.util.Map;
+
 /**
  *
  * @author kavoos
  */
 public class CommandTO {
+
     private int method;
+    private Map<String, String> parameters;
     private String data;
 
     public CommandTO() {
@@ -26,6 +30,13 @@ public class CommandTO {
     public void setData(String data) {
         this.data = data;
     }
-    
-    
+
+    public Map<String, String> getParameters() {
+        return parameters;
+    }
+
+    public void setParameters(Map<String, String> parameters) {
+        this.parameters = parameters;
+    }
+
 }