Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
24330 amit.gupta 1
package com.spice.profitmandi.dao.enumuration.auth;
2
 
3
public enum AuthType {
4
	LINK(0),
5
	CHANGE_PASSWORD(1);
6
 
7
	private final int value;
8
 
9
	private AuthType(int value) {
10
		this.value = value;
11
	}
12
 
13
	public int getValue() {
14
		return value;
15
	}
16
 
17
}