01: package org.objectweb.jonas.webapp.jonasadmin.jonasmqconnect.util;
02:
03: public class Property implements java.io.Serializable {
04: private String name;
05: private String value;
06: private String text;
07:
08: public Property(String name, String value, String text) {
09: this .name = name;
10: this .value = value;
11: this .text = text;
12: }
13:
14: /**
15: * @return Returns the name.
16: */
17: public String getName() {
18: return name;
19: }
20:
21: /**
22: * @param name The name to set.
23: */
24: public void setName(String name) {
25: this .name = name;
26: }
27:
28: /**
29: * @return Returns the value.
30: */
31: public String getValue() {
32: return value;
33: }
34:
35: /**
36: * @param value The value to set.
37: */
38: public void setValue(String value) {
39: this .value = value;
40: }
41:
42: /**
43: * @return Returns the text.
44: */
45: public String getText() {
46: return text;
47: }
48:
49: /**
50: * @param value The text to set.
51: */
52: public void setText(String text) {
53: this.text = text;
54: }
55: }
|