01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.servers;
05:
06: public class ServerProperty {
07: private String m_name;
08: private String m_value;
09:
10: public ServerProperty() {/**/
11: }
12:
13: public ServerProperty(String name, String value) {
14: m_name = name;
15: m_value = value;
16: }
17:
18: public String getName() {
19: return m_name;
20: }
21:
22: public void setName(String name) {
23: m_name = name;
24: }
25:
26: public String getValue() {
27: return m_value;
28: }
29:
30: public void setValue(String value) {
31: m_value = value;
32: }
33:
34: public String toString() {
35: return m_name + "=" + m_value;
36: }
37: }
|