01: /*
02: * Created on Mar 6, 2003
03: *
04: * Dbmjui is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU General Public License version 2 as
06: * published by the Free Software Foundation.
07: *
08: * Dbmjui is distributed in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11: * General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public
14: * License along with dbmjui; see the file COPYING. If not,
15: * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16: * Boston, MA 02111-1307, USA.
17: *
18: */
19: package fr.aliacom.dbmjui.beans;
20:
21: import java.io.Serializable;
22:
23: /**
24: * @author tom
25: *
26: * (c) 2001, 2003 Thomas Cataldo
27: */
28: public final class LockInfoEntry implements Serializable {
29:
30: private String name;
31: private String value;
32:
33: /**
34: * @param name
35: * @param value
36: */
37: public LockInfoEntry(String name, String value) {
38: this .name = name;
39: this .value = value;
40: }
41:
42: /**
43: * @return String
44: */
45: public String getName() {
46: return name;
47: }
48:
49: /**
50: * @return String
51: */
52: public String getValue() {
53: return value;
54: }
55:
56: /**
57: * Sets the name.
58: * @param name The name to set
59: */
60: public void setName(String name) {
61: this .name = name;
62: }
63:
64: /**
65: * Sets the value.
66: * @param value The value to set
67: */
68: public void setValue(String value) {
69: this.value = value;
70: }
71:
72: }
|