Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / SecurityCodeBean.java @ 18:78fbff99ec6c

History | View | Annotate | Download (2.75 KB)

1
/**
2
 * 
3
 */
4

    
5
package my.com.upass.pojo;
6

    
7
import java.util.Date;
8

    
9
/**
10
 * @author Administrator
11
 * 
12
 */
13
public class SecurityCodeBean
14
{
15

    
16
        private long        scOid;
17
        private String        scCipherText;
18
        private int                scState;
19
        private Date        scDateCreated;
20
        private Date        scDateFirstUsed;
21
        private Date        scDateLastUsed;
22
        private int                scUseCount;
23
        private int                scErrorCount;
24
        private String        scReferenceId; //e.g. CIF
25

    
26
        public SecurityCodeBean ()
27
        {
28
                // super();
29
        }
30

    
31
        /**
32
         * @return the scOid
33
         */
34
        public long getScOid ()
35
        {
36
                return scOid;
37
        }
38

    
39
        /**
40
         * @param scOid the scOid to set
41
         */
42
        public void setScOid (long scOid)
43
        {
44
                this.scOid = scOid;
45
        }
46

    
47
        /**
48
         * @return the scCipherText
49
         */
50
        public String getScCipherText ()
51
        {
52
                return scCipherText;
53
        }
54

    
55
        /**
56
         * @param scCipherText the scCipherText to set
57
         */
58
        public void setScCipherText (String scCipherText)
59
        {
60
                this.scCipherText = scCipherText;
61
        }
62

    
63
        /**
64
         * @return the scState
65
         */
66
        public int getScState ()
67
        {
68
                return scState;
69
        }
70

    
71
        /**
72
         * @param scState the scState to set
73
         */
74
        public void setScState (int scState)
75
        {
76
                this.scState = scState;
77
        }
78

    
79
        /**
80
         * @return the scDateCreated
81
         */
82
        public Date getScDateCreated ()
83
        {
84
                return scDateCreated;
85
        }
86

    
87
        /**
88
         * @param scDateCreated the scDateCreated to set
89
         */
90
        public void setScDateCreated (Date scDateCreated)
91
        {
92
                this.scDateCreated = scDateCreated;
93
        }
94

    
95
        /**
96
         * @return the scDateFirstUsed
97
         */
98
        public Date getScDateFirstUsed ()
99
        {
100
                return scDateFirstUsed;
101
        }
102

    
103
        /**
104
         * @param scDateFirstUsed the scDateFirstUsed to set
105
         */
106
        public void setScDateFirstUsed (Date scDateFirstUsed)
107
        {
108
                this.scDateFirstUsed = scDateFirstUsed;
109
        }
110

    
111
        /**
112
         * @return the scDateLastUsed
113
         */
114
        public Date getScDateLastUsed ()
115
        {
116
                return scDateLastUsed;
117
        }
118

    
119
        /**
120
         * @param scDateLastUsed the scDateLastUsed to set
121
         */
122
        public void setScDateLastUsed (Date scDateLastUsed)
123
        {
124
                this.scDateLastUsed = scDateLastUsed;
125
        }
126

    
127
        /**
128
         * @return the scUseCount
129
         */
130
        public int getScUseCount ()
131
        {
132
                return scUseCount;
133
        }
134

    
135
        /**
136
         * @param scUseCount the scUseCount to set
137
         */
138
        public void setScUseCount (int scUseCount)
139
        {
140
                this.scUseCount = scUseCount;
141
        }
142

    
143
        /**
144
         * @return the scErrorCount
145
         */
146
        public int getScErrorCount ()
147
        {
148
                return scErrorCount;
149
        }
150

    
151
        /**
152
         * @param scErrorCount the scErrorCount to set
153
         */
154
        public void setScErrorCount (int scErrorCount)
155
        {
156
                this.scErrorCount = scErrorCount;
157
        }
158

    
159
        /**
160
         * @return the scReferenceId
161
         */
162
        public String getScReferenceId ()
163
        {
164
                return scReferenceId;
165
        }
166

    
167
        /**
168
         * @param scReferenceId the scReferenceId to set
169
         */
170
        public void setScReferenceId (String scReferenceId)
171
        {
172
                this.scReferenceId = scReferenceId;
173
        }
174
        
175
}