01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.com
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package org.huihoo.jfox.jmx.loading;
09:
10: /**
11: * express a Mlet Attribute whitch contains name and value
12: *
13: * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
14: */
15:
16: public class MLetAttribute {
17: private String name;
18: private String value;
19:
20: public MLetAttribute(String name, String value) {
21: this .name = name;
22: this .value = value;
23: }
24:
25: /**
26: * get the name of MLet Attribute
27: */
28: public String getName() {
29: return name;
30: }
31:
32: /**
33: * get the value of MLet Attribute
34: */
35: public String getValue() {
36: return value;
37: }
38:
39: }
|