package com.tradecloud.domain.model.ordermanagement; /** * Possible states for an order in the system. * <p> * Try to keep them descriptive */ public enum ProductState { TARIFFED, UNTARIFFED, /*DELETED,*/ UNVERIFIED; }