View Javadoc

1   /**
2    * Copyright 2005-2014 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 org.kuali.rice.krad.datadictionary.parse.BeanTag;
19  import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
20  
21  import java.util.List;
22  
23  /**
24   * This is a description of what this class does - mpham don't forget to fill this in.
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  @BeanTag(name = "documentValuePathGroup-bean")
29  public class DocumentValuePathGroup extends DataDictionaryDefinitionBase {
30      private static final long serialVersionUID = 6285682208264817105L;
31  
32      private List<String> paths;
33      private DocumentCollectionPath documentCollectionPath;
34  
35      /**
36       * @return the documentValues
37       */
38      @BeanTagAttribute(name = "paths", type = BeanTagAttribute.AttributeType.LISTVALUE)
39      public List<String> getDocumentValues() {
40          return this.paths;
41      }
42  
43      /**
44       * @return the documentCollectionPath
45       */
46      @BeanTagAttribute(name = "documentCollectionPath", type = BeanTagAttribute.AttributeType.SINGLEBEAN)
47      public DocumentCollectionPath getDocumentCollectionPath() {
48          return this.documentCollectionPath;
49      }
50  
51      /**
52       * @param documentValues the documentValues to set
53       */
54      public void setDocumentValues(List<String> paths) {
55          this.paths = paths;
56      }
57  
58      /**
59       * @param documentCollectionPath the documentCollectionPath to set
60       */
61      public void setDocumentCollectionPath(DocumentCollectionPath documentCollectionPath) {
62          this.documentCollectionPath = documentCollectionPath;
63      }
64  
65      /**
66       * This overridden method ...
67       *
68       * @see org.kuali.rice.krad.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class,
69       *      java.lang.Class)
70       */
71      public void completeValidation(Class rootBusinessObjectClass, Class otherBusinessObjectClass) {
72          // TODO mpham - THIS METHOD NEEDS JAVADOCS
73  
74      }
75  
76  }