Subversion Repositories SmartDukaan

Rev

Rev 9637 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9637 Rev 11807
Line 6... Line 6...
6
    private String email;
6
    private String email;
7
    private boolean isLoggedIn;
7
    private boolean isLoggedIn;
8
    private String pincode;
8
    private String pincode;
9
    private long totalItems;
9
    private long totalItems;
10
    private long cartId;
10
    private long cartId;
-
 
11
    private Boolean isPrivateDealUser;
11
    
12
    
12
    public UserInfoPojo() {
13
    public UserInfoPojo() {
13
        userId = -1L;
14
        userId = -1L;
14
        email = "";
15
        email = "";
15
        isLoggedIn = false;
16
        isLoggedIn = false;
16
        pincode = "";
17
        pincode = "";
17
        totalItems = 0L;
18
        totalItems = 0L;
18
        cartId = 0L;
19
        cartId = 0L;
-
 
20
        isPrivateDealUser = false;
19
    }
21
    }
20
    
22
    
21
    public long getUserId() {
23
    public long getUserId() {
22
        return userId;
24
        return userId;
23
    }
25
    }
Line 63... Line 65...
63
    }
65
    }
64
 
66
 
65
    public long getCartId() {
67
    public long getCartId() {
66
        return cartId;
68
        return cartId;
67
    }
69
    }
-
 
70
 
-
 
71
	public void setIsPrivateDealUser(Boolean isPrivateDealUser) {
-
 
72
		this.isPrivateDealUser = isPrivateDealUser;
-
 
73
	}
-
 
74
 
-
 
75
	public Boolean getIsPrivateDealUser() {
-
 
76
		return isPrivateDealUser;
-
 
77
	}
68
    
78
    
69
}
79
}