01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package migration.modules.srap.erproxy;
06:
07: /*
08: * iPS 6.0 attribute param instance.
09: */
10: public class Attribute {
11: private String key;
12: private String value;
13:
14: public void setKey(String key) {
15: this .key = key;
16: }
17:
18: public void setValue(String value) {
19: this .value = value;
20: }
21:
22: public String getKey() {
23: return key;
24: }
25:
26: public String getValue() {
27: return value;
28: }
29: }
|