org.gs4tr.gcc.restclient.model.WordCount 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 java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class WordCount {
@JsonProperty("target_locale")
private Locale targetLocale;
@JsonProperty("current_state")
private String currentStatus;
@JsonProperty("wordcount_summary")
private List wordcountSummary;
public WordCount() {
}
public Locale getTargetLocale() {
return targetLocale;
}
public void setTargetLocale(Locale targetLocale) {
this.targetLocale = targetLocale;
}
public String getCurrentStatus() {
return currentStatus;
}
public void setCurrentStatus(String currentStatus) {
this.currentStatus = currentStatus;
}
public List getWordcountSummary() {
return wordcountSummary;
}
public void setWordcountSummary(List wordcountSummary) {
this.wordcountSummary = wordcountSummary;
}
}