1 /**
2 * Copyright 2005-2012 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.rice.krad.datadictionary;
17
18 import java.util.List;
19
20
21 /**
22 * This is a description of what this class does - mpham don't forget to fill this in.
23 *
24 * @author Kuali Rice Team (rice.collab@kuali.org)
25 *
26 */
27 public class DocumentValuePathGroup extends DataDictionaryDefinitionBase{
28 private static final long serialVersionUID = 6285682208264817105L;
29
30 private List<String> paths;
31 private DocumentCollectionPath documentCollectionPath;
32
33 /**
34 * @return the documentValues
35 */
36 public List<String> getDocumentValues() {
37 return this.paths;
38 }
39 /**
40 * @return the documentCollectionPath
41 */
42 public DocumentCollectionPath getDocumentCollectionPath() {
43 return this.documentCollectionPath;
44 }
45 /**
46 * @param documentValues the documentValues to set
47 */
48 public void setDocumentValues(List<String> paths) {
49 this.paths = paths;
50 }
51 /**
52 * @param documentCollectionPath the documentCollectionPath to set
53 */
54 public void setDocumentCollectionPath(
55 DocumentCollectionPath documentCollectionPath) {
56 this.documentCollectionPath = documentCollectionPath;
57 }
58 /**
59 * This overridden method ...
60 *
61 * @see org.kuali.rice.krad.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class, java.lang.Class)
62 */
63 public void completeValidation(Class rootBusinessObjectClass,
64 Class otherBusinessObjectClass) {
65 // TODO mpham - THIS METHOD NEEDS JAVADOCS
66
67 }
68
69 }