1 | |
package org.kuali.student.r2.core.collection.dto; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
import java.util.List; |
5 | |
|
6 | |
import javax.xml.bind.annotation.XmlAccessType; |
7 | |
import javax.xml.bind.annotation.XmlAccessorType; |
8 | |
import javax.xml.bind.annotation.XmlType; |
9 | |
|
10 | |
import org.kuali.student.r2.common.dto.IdEntityInfo; |
11 | |
import org.kuali.student.r2.core.collection.infc.EntitiesCollection; |
12 | |
import org.kuali.student.r2.core.collection.infc.CollectionEntry; |
13 | |
|
14 | |
|
15 | |
@XmlAccessorType(XmlAccessType.FIELD) |
16 | |
@XmlType(name = "EntitiesCollectionInfo", propOrder = {"id", "typeKey", "stateKey", "name", "descr", |
17 | |
"collectionEntries", "refObjectId", "refObjectTypeKey", "meta", "attributes", "_futureElements"}) |
18 | |
|
19 | 0 | public class EntitiesCollectionInfo extends IdEntityInfo implements |
20 | |
EntitiesCollection, Serializable { |
21 | |
|
22 | |
private static final long serialVersionUID = 1L; |
23 | |
|
24 | |
private List<CollectionEntry> collectionEntries; |
25 | |
|
26 | |
private String refObjectId; |
27 | |
|
28 | |
private String refObjectTypeKey; |
29 | |
|
30 | |
public void setRefObjectTypeKey(String refObjectTypeKey) { |
31 | 0 | this.refObjectTypeKey = refObjectTypeKey; |
32 | 0 | } |
33 | |
|
34 | |
@Override |
35 | |
public String getRefObjectTypeKey() { |
36 | 0 | return refObjectTypeKey; |
37 | |
} |
38 | |
|
39 | |
@Override |
40 | |
public List<CollectionEntry> getCollectionEntries() { |
41 | 0 | return collectionEntries; |
42 | |
} |
43 | |
|
44 | |
@Override |
45 | |
public String getRefObjectId() { |
46 | 0 | return refObjectId; |
47 | |
} |
48 | |
|
49 | |
public void setCollectionEntries(List<CollectionEntry> collectionEntries) { |
50 | 0 | this.collectionEntries = collectionEntries; |
51 | 0 | } |
52 | |
|
53 | |
public void setRefObjectId(String refObjectId) { |
54 | 0 | this.refObjectId = refObjectId; |
55 | 0 | } |
56 | |
|
57 | |
|
58 | |
} |