1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.datadictionary;
17
18 import java.util.List;
19
20
21
22
23
24
25 public class DocumentCollectionPath extends DataDictionaryDefinitionBase {
26 private static final long serialVersionUID = -8165456163213868710L;
27
28 protected String collectionPath;
29 protected List<String> paths;
30 protected DocumentCollectionPath nestedCollection;
31
32
33
34
35 public List<String> getDocumentValues() {
36 return this.paths;
37 }
38
39
40
41
42 public DocumentCollectionPath getNestedCollection() {
43 return this.nestedCollection;
44 }
45
46
47
48
49 public void setDocumentValues(List<String> paths) {
50 this.paths = paths;
51 }
52
53
54
55
56 public void setNestedCollection(DocumentCollectionPath documentCollectionPath) {
57 this.nestedCollection = documentCollectionPath;
58 }
59
60
61
62
63 public String getCollectionPath() {
64 return this.collectionPath;
65 }
66
67
68
69
70 public void setCollectionPath(String collectionPath) {
71 this.collectionPath = collectionPath;
72 }
73 }