package net.gepafin.tendermanagement.enums; import com.fasterxml.jackson.annotation.JsonValue; public enum AssignedApplicationEnum { OPEN ("OPEN"), SOCCORSO("SOCCORSO"), AWAITING("AWAITING"), CLOSE("CLOSE"), AWAITING_CONTRACT("AWAITING_CONTRACT"), CONTRACT_SIGNED("CONTRACT_SIGNED"); private final String value; AssignedApplicationEnum(String value) { this.value = value; } @JsonValue public String getValue() { return value; } }