ialbert 2023-02-01 11:10:30 +03:00
parent fc56cbe360
commit 196ec996df

View file

@ -0,0 +1,23 @@
package ru.spcex.platform.enumeration;
import ru.spcex.platform.utils.enumeration.IEnumKey;
public enum ServiceStatus implements IEnumKey {
Active("ACTV"),
Blocked("BLKD"),
Suspended("SSPD"),
Closed("CLOS"),
Reopened("ROPN"),
;
private final String key;
ServiceStatus(String key) {
this.key = key;
}
@Override
public String getKey() {
return key;
}
}