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 import org.kuali.rice.krad.datadictionary.parse.BeanTag;
21 import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
22
23
24
25
26
27
28 @BeanTag(name = "documentValuePathGroup")
29 public class DocumentValuePathGroup extends DataDictionaryDefinitionBase {
30 private static final long serialVersionUID = 6285682208264817105L;
31
32 protected List<String> paths;
33 protected DocumentCollectionPath documentCollectionPath;
34
35
36
37
38 @BeanTagAttribute(name = "paths", type = BeanTagAttribute.AttributeType.LISTVALUE)
39 public List<String> getDocumentValues() {
40 return this.paths;
41 }
42
43
44
45
46 @BeanTagAttribute(name = "documentCollectionPath", type = BeanTagAttribute.AttributeType.SINGLEBEAN)
47 public DocumentCollectionPath getDocumentCollectionPath() {
48 return this.documentCollectionPath;
49 }
50
51
52
53
54 public void setDocumentValues(List<String> paths) {
55 this.paths = paths;
56 }
57
58
59
60
61 public void setDocumentCollectionPath(DocumentCollectionPath documentCollectionPath) {
62 this.documentCollectionPath = documentCollectionPath;
63 }
64
65 }