1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.krms.api.repository.agenda; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.Collection; |
20 | |
|
21 | |
import javax.xml.bind.annotation.XmlAccessType; |
22 | |
import javax.xml.bind.annotation.XmlAccessorType; |
23 | |
import javax.xml.bind.annotation.XmlAnyElement; |
24 | |
import javax.xml.bind.annotation.XmlElement; |
25 | |
import javax.xml.bind.annotation.XmlRootElement; |
26 | |
import javax.xml.bind.annotation.XmlType; |
27 | |
|
28 | |
import org.kuali.rice.core.api.CoreConstants; |
29 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
30 | |
import org.kuali.rice.core.api.mo.ModelBuilder; |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
@XmlRootElement(name = AgendaTreeSubAgendaEntry.Constants.ROOT_ELEMENT_NAME) |
39 | |
@XmlAccessorType(XmlAccessType.NONE) |
40 | |
@XmlType(name = AgendaTreeSubAgendaEntry.Constants.TYPE_NAME, propOrder = { |
41 | |
AgendaTreeSubAgendaEntry.Elements.AGENDA_ITEM_ID, |
42 | |
AgendaTreeSubAgendaEntry.Elements.SUB_AGENDA_ID, |
43 | |
CoreConstants.CommonElements.FUTURE_ELEMENTS |
44 | |
}) |
45 | 1 | public final class AgendaTreeSubAgendaEntry extends AbstractDataTransferObject implements AgendaTreeEntryDefinition { |
46 | |
|
47 | |
private static final long serialVersionUID = 8594116503548506936L; |
48 | |
|
49 | |
@XmlElement(name = Elements.AGENDA_ITEM_ID, required = true) |
50 | |
private final String agendaItemId; |
51 | |
|
52 | |
@XmlElement(name = Elements.SUB_AGENDA_ID, required = true) |
53 | |
private final String subAgendaId; |
54 | |
|
55 | 4 | @SuppressWarnings("unused") |
56 | |
@XmlAnyElement |
57 | |
private final Collection<org.w3c.dom.Element> _futureElements = null; |
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | 3 | private AgendaTreeSubAgendaEntry() { |
63 | 3 | this.agendaItemId = null; |
64 | 3 | this.subAgendaId = null; |
65 | 3 | } |
66 | |
|
67 | 1 | private AgendaTreeSubAgendaEntry(Builder builder) { |
68 | 1 | this.agendaItemId = builder.getAgendaItemId(); |
69 | 1 | this.subAgendaId = builder.getSubAgendaId(); |
70 | 1 | } |
71 | |
|
72 | |
@Override |
73 | |
public String getAgendaItemId() { |
74 | 0 | return agendaItemId; |
75 | |
} |
76 | |
|
77 | |
public String getSubAgendaId() { |
78 | 0 | return this.subAgendaId; |
79 | |
} |
80 | |
|
81 | 1 | public static class Builder implements ModelBuilder, Serializable { |
82 | |
|
83 | |
private static final long serialVersionUID = 3548736700798501429L; |
84 | |
|
85 | |
private String agendaItemId; |
86 | |
private String subAgendaId; |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | 1 | private Builder(String agendaItemId, String subAgendaId) { |
92 | 1 | setAgendaItemId(agendaItemId); |
93 | 1 | setSubAgendaId(subAgendaId); |
94 | 1 | } |
95 | |
|
96 | |
public static Builder create(String agendaItemId, String subAgendaId){ |
97 | 1 | return new Builder(agendaItemId, subAgendaId); |
98 | |
} |
99 | |
|
100 | |
public String getAgendaItemId() { |
101 | 1 | return this.agendaItemId; |
102 | |
} |
103 | |
|
104 | |
public String getSubAgendaId() { |
105 | 1 | return this.subAgendaId; |
106 | |
} |
107 | |
|
108 | |
public void setAgendaItemId(String agendaItemId) { |
109 | 1 | if (agendaItemId == null) { |
110 | 0 | throw new IllegalArgumentException("agendaItemId was null"); |
111 | |
} |
112 | 1 | this.agendaItemId = agendaItemId; |
113 | 1 | } |
114 | |
|
115 | |
public void setSubAgendaId(String subAgendaId) { |
116 | 1 | if (subAgendaId == null) { |
117 | 0 | throw new IllegalArgumentException("subAgendaId was null"); |
118 | |
} |
119 | 1 | this.subAgendaId = subAgendaId; |
120 | 1 | } |
121 | |
|
122 | |
@Override |
123 | |
public AgendaTreeSubAgendaEntry build() { |
124 | 1 | return new AgendaTreeSubAgendaEntry(this); |
125 | |
} |
126 | |
|
127 | |
} |
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | 0 | static class Constants { |
133 | |
final static String ROOT_ELEMENT_NAME = "agendaTreeSubAgendaEntry"; |
134 | |
final static String TYPE_NAME = "AgendaTreeSubAgendaEntryType"; |
135 | |
} |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | 0 | static class Elements { |
142 | |
final static String AGENDA_ITEM_ID = "agendaItemId"; |
143 | |
final static String SUB_AGENDA_ID = "subAgendaId"; |
144 | |
} |
145 | |
|
146 | |
} |