Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.services;

public enum Department {
        WAREHOUSE("warehouse"), 
        CATALOG("catalog"), 
        ACCOUNTS("category"), 
        FINANCE("finance");

        private String value;

        Department(String value) {
                this.value = value;
        }
}