1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.lu.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
import java.util.HashMap; |
21 | |
import java.util.List; |
22 | |
import java.util.Map; |
23 | |
|
24 | |
import javax.xml.bind.annotation.XmlAccessType; |
25 | |
import javax.xml.bind.annotation.XmlAccessorType; |
26 | |
import javax.xml.bind.annotation.XmlAttribute; |
27 | |
import javax.xml.bind.annotation.XmlElement; |
28 | |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
29 | |
|
30 | |
import org.kuali.student.core.dto.HasAttributes; |
31 | |
import org.kuali.student.core.dto.MetaInfo; |
32 | |
import org.kuali.student.core.dto.RichTextInfo; |
33 | |
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
@XmlAccessorType(XmlAccessType.FIELD) |
39 | 0 | public class CluFeeInfo implements Serializable, HasAttributes { |
40 | |
|
41 | |
private static final long serialVersionUID = 1L; |
42 | |
|
43 | |
@XmlAttribute |
44 | |
private String id; |
45 | |
|
46 | |
@XmlElement |
47 | |
private RichTextInfo descr; |
48 | |
|
49 | |
@XmlElement |
50 | |
private List<CluFeeRecordInfo> cluFeeRecords; |
51 | |
|
52 | |
@XmlElement |
53 | |
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
54 | |
private Map<String,String> attributes; |
55 | |
|
56 | |
@XmlElement |
57 | |
private MetaInfo metaInfo; |
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | |
public Map<String,String> getAttributes() { |
63 | 0 | if (attributes == null) { |
64 | 0 | attributes = new HashMap<String,String>(); |
65 | |
} |
66 | 0 | return attributes; |
67 | |
} |
68 | |
|
69 | |
public void setAttributes(Map<String,String> attributes) { |
70 | 0 | this.attributes = attributes; |
71 | 0 | } |
72 | |
|
73 | |
public List<CluFeeRecordInfo> getCluFeeRecords() { |
74 | 0 | if(cluFeeRecords == null){ |
75 | 0 | cluFeeRecords = new ArrayList<CluFeeRecordInfo>(0); |
76 | |
} |
77 | 0 | return cluFeeRecords; |
78 | |
} |
79 | |
|
80 | |
public void setCluFeeRecords(List<CluFeeRecordInfo> cluFeeRecords) { |
81 | 0 | this.cluFeeRecords = cluFeeRecords; |
82 | 0 | } |
83 | |
|
84 | |
public String getId() { |
85 | 0 | return id; |
86 | |
} |
87 | |
|
88 | |
public void setId(String id) { |
89 | 0 | this.id = id; |
90 | 0 | } |
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
public RichTextInfo getDescr() { |
96 | 0 | return descr; |
97 | |
} |
98 | |
|
99 | |
public void setDescr(RichTextInfo descr) { |
100 | 0 | this.descr = descr; |
101 | 0 | } |
102 | |
|
103 | |
public MetaInfo getMetaInfo() { |
104 | 0 | return metaInfo; |
105 | |
} |
106 | |
|
107 | |
public void setMetaInfo(MetaInfo metaInfo) { |
108 | 0 | this.metaInfo = metaInfo; |
109 | 0 | } |
110 | |
} |