com.smartlogic.classificationserver.client.RulebaseClass 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 RulebaseClass {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
private int ruleCount;
public int getRuleCount() {
return ruleCount;
}
public void setRuleCount(int ruleCount) {
this.ruleCount = ruleCount;
}
@Override
public String toString() {
return "Name: '" + name + "' Rule Count: " + ruleCount;
}
}