core.domain.enums.ServiceMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EpikosRestService Show documentation
Show all versions of EpikosRestService Show documentation
Epikos is a Rest Serivce framework which can be extend to develop any other Rest API/Services. For more
detail please checkout github (https://github.com/epikosrest/epikos.git)
package core.domain.enums;
import lombok.Getter;
/**
* Created by nitina on 8/23/16.
*/
@Getter
public enum ServiceMode {
NORMAL("NORMAL"),SPOOF("SPOOF");
String mode;
ServiceMode(String mode){
this.mode = mode;
}
}