Statistics
| Branch: | Revision:

m2u-upass-core / src / my / com / upass / pojo / TbAmTacBackup.java @ 8:1982e43e6686

History | View | Annotate | Download (3.17 KB)

1 0:02300db8682b hadi
package my.com.upass.pojo;
2
3
import java.io.Serializable;
4
import java.sql.Date;
5
6
/**
7
 *
8
 * PROGRAMMER: Gabbytian Rayvandy
9
 * CHANGE-NO:
10
 * TASK-NO:
11
 * DATE CREATED: Oct 9, 2011
12
 * TAG AS:
13
 * REASON(S):
14
 * MODIFICATION:
15
 */
16
17
/**
18
 * 0-true, yes
19
 * 1-false, no
20
 */
21
public class TbAmTacBackup implements Serializable
22
{
23
        private static final long serialVersionUID = 1L;
24
        private Integer oid;
25
        private Integer tuserId;
26
        private String ttacCiphertext;
27
        private Integer ttacState;
28
        private Date tdateGenerated;
29
        private Date tdateFirstUsed;
30
        private Date tdateLastUsed;
31
        private Integer tuseCount;
32
        private Integer terrorCount;
33
        private String tsessionId;
34
35
        /**
36
         * @return the oid
37
         */
38
        public Integer getOid ()
39
        {
40
                return oid;
41
        }
42
43
        /**
44
         * @param oid the oid to set
45
         */
46
        public void setOid (Integer oid)
47
        {
48
                this.oid = oid;
49
        }
50
51
        /**
52
         * @return the tuserId
53
         */
54
        public Integer getTuserId ()
55
        {
56
                return tuserId;
57
        }
58
59
        /**
60
         * @param tuserId the tuserId to set
61
         */
62
        public void setTuserId (Integer tuserId)
63
        {
64
                this.tuserId = tuserId;
65
        }
66
67
        /**
68
         * @return the ttacCiphertext
69
         */
70
        public String getTtacCiphertext ()
71
        {
72
                return ttacCiphertext;
73
        }
74
75
        /**
76
         * @param ttacCiphertext the ttacCiphertext to set
77
         */
78
        public void setTtacCiphertext (String ttacCiphertext)
79
        {
80
                this.ttacCiphertext = ttacCiphertext;
81
        }
82
83
        /**
84
         * @return the ttacState
85
         */
86
        public Integer getTtacState ()
87
        {
88
                return ttacState;
89
        }
90
91
        /**
92
         * @param ttacState the ttacState to set
93
         */
94
        public void setTtacState (Integer ttacState)
95
        {
96
                this.ttacState = ttacState;
97
        }
98
99
        /**
100
         * @return the tdateGenerated
101
         */
102
        public Date getTdateGenerated ()
103
        {
104
                return tdateGenerated;
105
        }
106
107
        /**
108
         * @param tdateGenerated the tdateGenerated to set
109
         */
110
        public void setTdateGenerated (Date tdateGenerated)
111
        {
112
                this.tdateGenerated = tdateGenerated;
113
        }
114
115
        /**
116
         * @return the tdateFirstUsed
117
         */
118
        public Date getTdateFirstUsed ()
119
        {
120
                return tdateFirstUsed;
121
        }
122
123
        /**
124
         * @param tdateFirstUsed the tdateFirstUsed to set
125
         */
126
        public void setTdateFirstUsed (Date tdateFirstUsed)
127
        {
128
                this.tdateFirstUsed = tdateFirstUsed;
129
        }
130
131
        /**
132
         * @return the tdateLastUsed
133
         */
134
        public Date getTdateLastUsed ()
135
        {
136
                return tdateLastUsed;
137
        }
138
139
        /**
140
         * @param tdateLastUsed the tdateLastUsed to set
141
         */
142
        public void setTdateLastUsed (Date tdateLastUsed)
143
        {
144
                this.tdateLastUsed = tdateLastUsed;
145
        }
146
147
        /**
148
         * @return the tuseCount
149
         */
150
        public Integer getTuseCount ()
151
        {
152
                return tuseCount;
153
        }
154
155
        /**
156
         * @param tuseCount the tuseCount to set
157
         */
158
        public void setTuseCount (Integer tuseCount)
159
        {
160
                this.tuseCount = tuseCount;
161
        }
162
163
        /**
164
         * @return the terrorCount
165
         */
166
        public Integer getTerrorCount ()
167
        {
168
                return terrorCount;
169
        }
170
171
        /**
172
         * @param terrorCount the terrorCount to set
173
         */
174
        public void setTerrorCount (Integer terrorCount)
175
        {
176
                this.terrorCount = terrorCount;
177
        }
178
179
        /**
180
         * @return the tsessionId
181
         */
182
        public String getTsessionId ()
183
        {
184
                return tsessionId;
185
        }
186
187
        /**
188
         * @param tsessionId the tsessionId to set
189
         */
190
        public void setTsessionId (String tsessionId)
191
        {
192
                this.tsessionId = tsessionId;
193
        }
194
}