1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.core.impl.config.property; |
17 | |
|
18 | |
import javax.xml.bind.annotation.XmlAccessType; |
19 | |
import javax.xml.bind.annotation.XmlAccessorType; |
20 | |
import javax.xml.bind.annotation.XmlElement; |
21 | |
import javax.xml.bind.annotation.XmlRootElement; |
22 | |
import javax.xml.bind.annotation.XmlType; |
23 | |
import java.util.ArrayList; |
24 | |
import java.util.List; |
25 | |
|
26 | |
@XmlRootElement(name = "config", namespace = "http://rice.kuali.org/core/impl/config") |
27 | |
@XmlAccessorType(XmlAccessType.FIELD) |
28 | |
@XmlType(name = "Config", namespace = "http://rice.kuali.org/core/impl/config", propOrder = { |
29 | |
"paramList" |
30 | |
}) |
31 | 0 | public class Config { |
32 | |
|
33 | |
@XmlElement(name="param", namespace = "http://rice.kuali.org/core/impl/config") |
34 | |
private List<Param> paramList; |
35 | |
|
36 | |
public List<Param> getParamList() { |
37 | 0 | if(paramList == null) { |
38 | 0 | paramList = new ArrayList<Param>(); |
39 | |
} |
40 | 0 | return paramList; |
41 | |
} |
42 | |
|
43 | |
} |