Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / UserTokenBean.java @ 0:02300db8682b

History | View | Annotate | Download (1.1 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.io.Serializable;
14

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

    
26
/**
27
 * <Class description>
28
 */
29
public class UserTokenBean extends my.com.upass.TokenBean implements Serializable
30
{
31
        private static final long        serialVersionUID        = 1L;
32

    
33
        private UserBean upassUser;
34

    
35
        /**
36
         * @param upassUser the upassUser to set
37
         */
38
        public void setUpassUser (UserBean upassUser)
39
        {
40
                this.upassUser = upassUser;
41
        }
42

    
43
        /**
44
         * @return the upassUser
45
         */
46
        public UserBean getUpassUser ()
47
        {
48
                return upassUser;
49
        }
50
}