Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (1007 Bytes)

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
public class UserMasterBeanBackup  implements Serializable
16
{
17

    
18
        /**
19
         * 
20
         */
21
        private static final long serialVersionUID = 7981602560302014960L;
22

    
23
        private long         userID;
24
        private String         userAlias;
25
        
26
        
27
        public long getUserID() {
28
                return userID;
29
        }
30
        public void setUserID(long userID) {
31
                this.userID = userID;
32
        }
33
        public String getUserAlias() {
34
                return userAlias;
35
        }
36
        public void setUserAlias(String userAlias) {
37
                this.userAlias = userAlias;
38
        }
39
        
40
}