
pl.net.bluesoft.casemanagement.model.CaseAttributes Maven / Gradle / Ivy
The newest version!
package pl.net.bluesoft.casemanagement.model;
/**
* Created by pkuciapski on 2014-05-15.
*/
public enum CaseAttributes {
COMMENTS("comments"),
FILES("files"),
CASE_ID("caseId");
private final String value;
CaseAttributes(String value) {
this.value = value;
}
public String value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy