org.gs4tr.gcc.restclient.model.ClassifierPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ClassifierPattern {
@JsonProperty("classifier_value")
private String classifierValue;
@JsonProperty("regex_pattern")
private String regexPattern;
@JsonProperty("cd_rule_file_path")
private String cdRuleFilePath;
public ClassifierPattern() {
}
public String getClassifierValue() {
return classifierValue;
}
public void setClassifierValue(String classifierValue) {
this.classifierValue = classifierValue;
}
public String getRegexPattern() {
return regexPattern;
}
public void setRegexPattern(String regexPattern) {
this.regexPattern = regexPattern;
}
public String getCdRuleFilePath() {
return cdRuleFilePath;
}
public void setCdRuleFilePath(String cdRuleFilePath) {
this.cdRuleFilePath = cdRuleFilePath;
}
}