blob: 573cdc8b8e7518cf4e57c2545a4c36cd8e36284d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package com.c2kernel.lifecycle.instance.predefined.entitycreation;
import com.c2kernel.utils.CastorHashMap;
import com.c2kernel.utils.KeyValuePair;
public class DependencyMember implements java.io.Serializable {
public String itemPath;
public CastorHashMap props = new CastorHashMap();
public DependencyMember() {
super();
}
public DependencyMember(String itemPath) {
this.itemPath = itemPath;
}
public KeyValuePair[] getKeyValuePairs() {
return props.getKeyValuePairs();
}
public void setKeyValuePairs(KeyValuePair[] pairs) {
props.setKeyValuePairs(pairs);
}
}
|