com.smartlogic.classificationserver.client.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Semaphore-CS-Client Show documentation
Show all versions of Semaphore-CS-Client Show documentation
Client for the Smartlogic Semaphore Classification Server
package com.smartlogic.classificationserver.client;
public class Parameter {
private String name;
private String value;
private String translation;
public void setTranslation(String translation) {
this.translation = translation;
}
public String getTranslation() {
return translation;
}
public void setValue(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
@Override
public String toString() {
return "Parameter [name=" + name + ", value=" + value + ", translation=" + translation + "]";
}
}