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