Subversion Repositories SmartDukaan

Rev

Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.enumuration;

public enum PermissionType {
        
        SHOW_PRICE(0);
        private int value;
        private PermissionType(int value) {
                this.value = value;
        }
        public int getValue() {
                return value;
        }
        
}