Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / ConfigurationBean.java @ 9:16125cca68e4

History | View | Annotate | Download (2.23 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.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 ConfigurationBean implements Serializable
29
{
30
        private static final long        serialVersionUID        = 1L;
31
32
        private String configName;
33
        private String configValue;
34
        private String configDescription;
35
        private int applicationId;
36
        protected int mkPending;
37
38
        /**
39
         * @return the configName
40
         */
41
        public String getConfigName ()
42
        {
43
                return configName;
44
        }
45
        /**
46
         * @param configName the configName to set
47
         */
48
        public void setConfigName (String configName)
49
        {
50
                this.configName = configName;
51
        }
52
        /**
53
         * @return the configValue
54
         */
55
        public String getConfigValue ()
56
        {
57
                return configValue;
58
        }
59
        /**
60
         * @param configValue the configValue to set
61
         */
62
        public void setConfigValue (String configValue)
63
        {
64
                this.configValue = configValue;
65
        }
66
        /**
67
         * @return the configType
68
         */
69
        public int getApplicationId ()
70
        {
71
                return applicationId;
72
        }
73
        /**
74
         * @param configType the configType to set
75
         */
76
        public void setApplicationId (int applicationId)
77
        {
78
                this.applicationId = applicationId;
79
        }
80
        /**
81
         * @param configDescription the configDescription to set
82
         */
83
        public void setConfigDescription (String configDescription)
84
        {
85
                this.configDescription = configDescription;
86
        }
87
        /**
88
         * @return the configDescription
89
         */
90
        public String getConfigDescription ()
91
        {
92
                return configDescription;
93
        }
94
        /**
95
         * @return the mkPending
96
         */
97
        public int getMkPending() {
98
                return mkPending;
99
        }
100
        /**
101
         * @param mkPending the mkPending to set
102
         */
103
        public void setMkPending(int mkPending) {
104
                this.mkPending = mkPending;
105
        }
106
}