Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21409 amit.gupta 1
package com.spice.profitmandi.web.res.order;
2
 
3
public class UserInfoPojo {
4
 
5
    private long userId;
6
    private String email;
7
    private boolean isLoggedIn;
8
    private String pincode;
9
    private long totalItems;
10
    private long cartId;
11
    private Boolean isPrivateDealUser;
12
 
13
    public UserInfoPojo() {
14
        userId = -1L;
15
        email = "";
16
        isLoggedIn = false;
17
        pincode = "";
18
        totalItems = 0L;
19
        cartId = 0L;
20
        isPrivateDealUser = false;
21
    }
22
 
23
    public long getUserId() {
24
        return userId;
25
    }
26
 
27
    public void setUserId(long userId) {
28
        this.userId = userId;
29
    }
30
 
31
    public String getEmail() {
32
        return email;
33
    }
34
 
35
    public void setEmail(String email) {
36
        this.email = email;
37
    }
38
 
39
    public boolean isLoggedIn() {
40
        return isLoggedIn;
41
    }
42
 
43
    public void setLoggedIn(boolean isLoggedIn) {
44
        this.isLoggedIn = isLoggedIn;
45
    }
46
 
47
    public String getPincode() {
48
        return pincode;
49
    }
50
 
51
    public void setPincode(String pincode) {
52
        this.pincode = pincode;
53
    }
54
 
55
    public long getTotalItems() {
56
        return totalItems;
57
    }
58
 
59
    public void setTotalItems(long totalItems) {
60
        this.totalItems = totalItems;
61
    }
62
 
63
    public void setCartId(long cartId) {
64
        this.cartId = cartId;
65
    }
66
 
67
    public long getCartId() {
68
        return cartId;
69
    }
70
 
71
	public void setIsPrivateDealUser(Boolean isPrivateDealUser) {
72
		this.isPrivateDealUser = isPrivateDealUser;
73
	}
74
 
75
	public Boolean getIsPrivateDealUser() {
76
		return isPrivateDealUser;
77
	}
78
 
79
}