Coverage Report - org.kuali.rice.kns.datadictionary.RoutingTypeDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
RoutingTypeDefinition
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.kns.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  0
 public class RoutingTypeDefinition extends DataDictionaryDefinitionBase {
 28  
         private static final long serialVersionUID = -5455042765223753531L;
 29  
         
 30  
         private List<RoutingAttribute> routingAttributes; 
 31  
         private List<DocumentValuePathGroup> documentValuePathGroups; 
 32  
 
 33  
         /**
 34  
          * @return the routingAttributes
 35  
          */
 36  
         public List<RoutingAttribute> getRoutingAttributes() {
 37  0
                 return this.routingAttributes;
 38  
         }
 39  
         /**
 40  
          * @return the documentValuePathGroups
 41  
          */
 42  
         public List<DocumentValuePathGroup> getDocumentValuePathGroups() {
 43  0
                 return this.documentValuePathGroups;
 44  
         }
 45  
         /**
 46  
          * @param routingAttributes the routingAttributes to set
 47  
          */
 48  
         public void setRoutingAttributes(List<RoutingAttribute> routingAttributes) {
 49  0
                 this.routingAttributes = routingAttributes;
 50  0
         }
 51  
         /**
 52  
          * @param documentValuePathGroups the documentValuePathGroups to set
 53  
          */
 54  
         public void setDocumentValuePathGroups(
 55  
                         List<DocumentValuePathGroup> documentValuePathGroups) {
 56  0
                 this.documentValuePathGroups = documentValuePathGroups;
 57  0
         }
 58  
         /**
 59  
          * This overridden method ...
 60  
          * 
 61  
          * @see org.kuali.rice.kns.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class, java.lang.Class)
 62  
          */
 63  
         public void completeValidation(Class rootBusinessObjectClass,
 64  
                         Class otherBusinessObjectClass) {
 65  
                 // TODO wliang - THIS METHOD NEEDS JAVADOCS
 66  
                 
 67  0
         }
 68  
 
 69  
 }