org.snapscript.studio.agent.cli.CommandValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-agent Show documentation
Show all versions of snap-agent Show documentation
Dynamic scripting for the JVM
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;
}
}