Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / UserBean.java @ 70:be137fe903ee

History | View | Annotate | Download (2.08 KB)

1
/**
2
 * Copyright (M) 2010 Penril Datability (M) Sdn Bhd All rights reserved.
3
 *
4
 * This software is copyrighted. Under the copyright laws, this software
5
 * may not be copied, in whole or in part, without prior written consent
6
 * of Penril Datability (M) Sdn Bhd or its assignees. This software is
7
 * provided under the terms of a license between Penril Datability (M)
8
 * Sdn Bhd and the recipient, and its use is subject to the terms of that
9
 * license.
10
 */
11
package my.com.upass.pojo;
12

    
13
import java.util.HashSet;
14
import java.util.Set;
15

    
16
/**
17
 * 
18
 * PROGRAMMER: Danniell
19
 * CHANGE-NO:
20
 * TASK-NO:
21
 * DATE CREATED: Oct 8, 2011
22
 * TAG AS:
23
 * REASON(S):
24
 * MODIFICATION:
25
 */
26

    
27
/**
28
 * <Class description>
29
 */
30
public class UserBean extends MinimalUserBean {
31

    
32
        private static final long serialVersionUID = 9156396112031434214L;
33

    
34
        TacBean tacbean;
35

    
36
        private Set<UserTokenBean> upassUserTokens = new HashSet<UserTokenBean>();
37

    
38
        private UserMasterBean upassUserMaster;
39

    
40
        /**
41
         * @return the ucustomerType
42
         */
43
        // public String getUcustomerType ()
44
        // {
45
        // return ucustomerType;
46
        // }
47
        //
48
        // /**
49
        // * @param ucustomerType the ucustomerType to set
50
        // */
51
        // public void setUcustomerType (String ucustomerType)
52
        // {
53
        // this.ucustomerType = ucustomerType;
54
        // }
55

    
56
        /**
57
         * @return the upassUserTokens
58
         */
59
        public Set<UserTokenBean> getUpassUserTokens() {
60
                return upassUserTokens;
61
        }
62

    
63
        /**
64
         * @param upassUserTokens
65
         *            the upassUserTokens to set
66
         */
67
        public void setUpassUserTokens(Set<UserTokenBean> upassUserTokens) {
68
                this.upassUserTokens = upassUserTokens;
69
        }
70

    
71
        // merging
72

    
73
        public TacBean getTacbean() {
74
                return tacbean;
75
        }
76

    
77
        public void setTacbean(TacBean tacbean) {
78
                this.tacbean = tacbean;
79
        }
80

    
81
        /**
82
         * @return the upassUserMaster
83
         */
84
        public UserMasterBean getUpassUserMaster() {
85
                return upassUserMaster;
86
        }
87

    
88
        /**
89
         * @param upassUserMaster the upassUserMaster to set
90
         */
91
        public void setUpassUserMaster(UserMasterBean upassUserMaster) {
92
                this.upassUserMaster = upassUserMaster;
93
        }
94

    
95
        public UserBean() {
96
        }
97
}