Subversion Repositories SmartDukaan

Rev

Rev 35272 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21469 amit.gupta 1
package com.spice.profitmandi.web.enumuration;
2
 
3
public enum UserStatus {
4
	NOT_REGISTERED("notRegistered"),
35377 aman 5
	NOT_REGISTERED_GOOGLE_ACCOUNT("notRegisteredGoogleAccount"),
21469 amit.gupta 6
	REGISTERED("registered"),
7
	NOT_VERIFIED_RETAILER("notVerifiedRetailer"),
8
	RETAILER("retailer"),
22017 amit.gupta 9
	VERIFIED_RETAILER("verifiedRetailer"),
35272 amit 10
	FOFO("fofo"),
11
    FOFO_ASSOCIATE("fofoAssociate"),
12
    FOFO_TRIAL("fofoTrial");
13
 
21469 amit.gupta 14
	private String value;
15
	private UserStatus(String value) {
16
		this.value = value;
17
	}
18
	public String getValue() {
19
		return value;
20
	}
21
}