SupplierState.java

package com.tradecloud.domain.supplier;

/**
 * Supplier state enumerated values.
 * <p>
 * These are used to match up to our external supplier systems.
 * <p>
 * The ACTIVE state here takes precedence over the active flag inherited on the supplier.
 * <p>
 * https://jira.devstream.net/browse/ERPTA-66
 *
 * @author ronan
 */
public enum SupplierState {
    ACTIVE, INACTIVE, LIQUIDATED, SUSPENDED
}