ConsignmentStateChangeAction.java

package com.tradecloud.domain.model.ordermanagement;

/**
 * List of user state change request actions that are allowed through the state service for Consignment.
 *
 * @author ronan
 */
public enum ConsignmentStateChangeAction {
    FINALISE, UNFINALISE, RESUBMIT_SIGNOFF, RESUBMIT_UNSIGNOFF, RESET_STATE,
    TREASURY_DEAL_FULL_LINKED, TREASURY_DEAL_NOT_FULL_LINKED, ARCHIVE, UNARCHIVE;
}