1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
package org.kuali.student.enrollment.classI.hold.dto; |
16 | |
|
17 | |
import java.io.Serializable; |
18 | |
import java.util.Date; |
19 | |
import java.util.List; |
20 | |
import org.w3c.dom.Element; |
21 | |
|
22 | |
import javax.xml.bind.annotation.XmlAccessType; |
23 | |
import javax.xml.bind.annotation.XmlAccessorType; |
24 | |
import javax.xml.bind.annotation.XmlAnyElement; |
25 | |
import javax.xml.bind.annotation.XmlElement; |
26 | |
|
27 | |
import javax.xml.bind.annotation.XmlType; |
28 | |
|
29 | |
import org.kuali.student.r2.common.dto.KeyEntityInfo; |
30 | |
import org.kuali.student.r2.common.infc.ModelBuilder; |
31 | |
import org.kuali.student.enrollment.classI.hold.infc.Restriction; |
32 | |
|
33 | |
@XmlAccessorType(XmlAccessType.FIELD) |
34 | |
@XmlType(name = "RestrictionInfo", propOrder = {"key", "typeKey", "stateKey", "name", "descr", "metaInfo", "attributes", "_futureElements"}) |
35 | |
|
36 | |
public class RestrictionInfo extends KeyEntityInfo implements Restriction, Serializable { |
37 | |
private static final long serialVersionUID = 1L; |
38 | |
|
39 | |
@XmlAnyElement |
40 | |
private final List<Element> _futureElements; |
41 | |
|
42 | 0 | private RestrictionInfo() { |
43 | 0 | _futureElements = null; |
44 | 0 | } |
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
public RestrictionInfo(Restriction restriction) { |
52 | 0 | super(restriction); |
53 | 0 | _futureElements = null; |
54 | 0 | } |
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | 0 | public static class Builder extends KeyEntityInfo.Builder implements ModelBuilder<RestrictionInfo>, Restriction { |
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | 0 | public Builder() { |
66 | 0 | } |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
public Builder(Restriction restriction) { |
73 | 0 | super(restriction); |
74 | 0 | } |
75 | |
|
76 | |
@Override |
77 | |
public RestrictionInfo build() { |
78 | 0 | return new RestrictionInfo(this); |
79 | |
} |
80 | |
} |
81 | |
} |