Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / AppAccessBean.java @ 14:12070e3b75b3

History | View | Annotate | Download (2.3 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
 * PROGRAMMER: Danniell
17
 * CHANGE-NO:
18
 * TASK-NO:
19
 * DATE CREATED: Oct 8, 2011
20
 * TAG AS:
21
 * REASON(S):
22
 * MODIFICATION:
23
 */
24

    
25
/**
26
 * <Class description>
27
 */
28
public class AppAccessBean implements Serializable
29
{
30
        private static final long        serialVersionUID        = 1L;
31
        
32
        private String aappServId;
33
        private String aappServAccess1;
34
        private String aappServAccess2;
35
        private String aappServAuthList;
36
        private UserBean tbAmUser;
37
        
38
        /**
39
         * @return the aappServId
40
         */
41
        public String getAappServId ()
42
        {
43
                return aappServId;
44
        }
45
        /**
46
         * @param aappServId the aappServId to set
47
         */
48
        public void setAappServId (String aappServId)
49
        {
50
                this.aappServId = aappServId;
51
        }
52
        /**
53
         * @return the aappServAccess1
54
         */
55
        public String getAappServAccess1 ()
56
        {
57
                return aappServAccess1;
58
        }
59
        /**
60
         * @param aappServAccess1 the aappServAccess1 to set
61
         */
62
        public void setAappServAccess1 (String aappServAccess1)
63
        {
64
                this.aappServAccess1 = aappServAccess1;
65
        }
66
        /**
67
         * @return the aappServAccess2
68
         */
69
        public String getAappServAccess2 ()
70
        {
71
                return aappServAccess2;
72
        }
73
        /**
74
         * @param aappServAccess2 the aappServAccess2 to set
75
         */
76
        public void setAappServAccess2 (String aappServAccess2)
77
        {
78
                this.aappServAccess2 = aappServAccess2;
79
        }
80
        /**
81
         * @return the aappServAuthList
82
         */
83
        public String getAappServAuthList ()
84
        {
85
                return aappServAuthList;
86
        }
87
        /**
88
         * @param aappServAuthList the aappServAuthList to set
89
         */
90
        public void setAappServAuthList (String aappServAuthList)
91
        {
92
                this.aappServAuthList = aappServAuthList;
93
        }
94
        /**
95
         * @return the tbAmUser
96
         */
97
        public UserBean getTbAmUser ()
98
        {
99
                return tbAmUser;
100
        }
101
        /**
102
         * @param tbAmUser the tbAmUser to set
103
         */
104
        public void setTbAmUser (UserBean tbAmUser)
105
        {
106
                this.tbAmUser = tbAmUser;
107
        }
108
}