Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / UserBean.java @ 65:4f1fc40dc837

History | View | Annotate | Download (2.08 KB)

1 0:02300db8682b hadi
/**
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 9:16125cca68e4 hadi
public class UserBean extends MinimalUserBean {
31
32 0:02300db8682b hadi
        private static final long serialVersionUID = 9156396112031434214L;
33
34 9:16125cca68e4 hadi
        TacBean tacbean;
35 0:02300db8682b hadi
36 9:16125cca68e4 hadi
        private Set<UserTokenBean> upassUserTokens = new HashSet<UserTokenBean>();
37
38 0:02300db8682b hadi
        private UserMasterBean upassUserMaster;
39 9:16125cca68e4 hadi
40 0:02300db8682b hadi
        /**
41
         * @return the ucustomerType
42
         */
43 9:16125cca68e4 hadi
        // 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 0:02300db8682b hadi
56
        /**
57
         * @return the upassUserTokens
58
         */
59 9:16125cca68e4 hadi
        public Set<UserTokenBean> getUpassUserTokens() {
60 0:02300db8682b hadi
                return upassUserTokens;
61
        }
62
63
        /**
64 9:16125cca68e4 hadi
         * @param upassUserTokens
65
         *            the upassUserTokens to set
66 0:02300db8682b hadi
         */
67 9:16125cca68e4 hadi
        public void setUpassUserTokens(Set<UserTokenBean> upassUserTokens) {
68 0:02300db8682b hadi
                this.upassUserTokens = upassUserTokens;
69
        }
70
71 9:16125cca68e4 hadi
        // merging
72 0:02300db8682b hadi
73
        public TacBean getTacbean() {
74
                return tacbean;
75
        }
76
77
        public void setTacbean(TacBean tacbean) {
78
                this.tacbean = tacbean;
79
        }
80
81 9:16125cca68e4 hadi
        /**
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 0:02300db8682b hadi
        public UserBean() {
96
        }
97
}