1 | |
package org.kuali.student.common.assembly.data; |
2 | |
|
3 | |
import java.util.List; |
4 | |
|
5 | |
import javax.xml.bind.annotation.XmlAccessType; |
6 | |
import javax.xml.bind.annotation.XmlAccessorType; |
7 | |
|
8 | |
@XmlAccessorType(XmlAccessType.FIELD) |
9 | 4 | public class UILookupConfig{ |
10 | |
|
11 | |
private static final long serialVersionUID = 1L; |
12 | |
|
13 | |
protected UILookupData initialLookup; |
14 | |
protected List<UILookupData> additionalLookups; |
15 | |
private String name; |
16 | |
private String path; |
17 | |
private String dataType; |
18 | |
private String type; |
19 | |
|
20 | |
public UILookupData getInitialLookup() { |
21 | 10 | return initialLookup; |
22 | |
} |
23 | |
|
24 | |
public void setInitialLookup(UILookupData initialLookup) { |
25 | 4 | this.initialLookup = initialLookup; |
26 | 4 | } |
27 | |
|
28 | |
public List<UILookupData> getAdditionalLookups() { |
29 | 5 | return additionalLookups; |
30 | |
} |
31 | |
|
32 | |
public void setAdditionalLookups(List<UILookupData> additionalLookups) { |
33 | 0 | this.additionalLookups = additionalLookups; |
34 | 0 | } |
35 | |
|
36 | |
public String getName() { |
37 | 0 | return name; |
38 | |
} |
39 | |
|
40 | |
public void setName(String name) { |
41 | 0 | this.name = name; |
42 | 0 | } |
43 | |
|
44 | |
public String getPath() { |
45 | 31 | return path; |
46 | |
} |
47 | |
|
48 | |
public void setPath(String path) { |
49 | 4 | this.path = path; |
50 | 4 | } |
51 | |
|
52 | |
public String getDataType() { |
53 | 0 | return dataType; |
54 | |
} |
55 | |
|
56 | |
public void setDataType(String dataType) { |
57 | 0 | this.dataType = dataType; |
58 | 0 | } |
59 | |
|
60 | |
public String getType () { |
61 | 14 | return type; |
62 | |
} |
63 | |
|
64 | |
public void setType (String type) { |
65 | 4 | this.type = type; |
66 | 4 | } |
67 | |
} |