All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.studio.agent.cli.CommandValue Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.studio.agent.cli;

public class CommandValue {

   private final String name;
   private final Object value;

   public CommandValue(String name, Object value) {
      this.name = name;
      this.value = value;
   }
   
   public String getName(){
      return name;
   }
   
   public Object getValue(){
      return value;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy