Coverage Report - org.kuali.student.common.search.dto.CrossSearchTypeInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
CrossSearchTypeInfo
0%
0/14
0%
0/4
1.333
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.search.dto;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import javax.xml.bind.annotation.XmlAccessType;
 22  
 import javax.xml.bind.annotation.XmlAccessorType;
 23  
 @XmlAccessorType(XmlAccessType.FIELD)
 24  0
 public class CrossSearchTypeInfo extends SearchTypeInfo {
 25  
 
 26  
         private static final long serialVersionUID = 1L;
 27  
         
 28  
         List<SubSearchInfo> subSearches;
 29  
         JoinCriteriaInfo joinCriteria;
 30  
         List<JoinResultMappingInfo> joinResultMappings;
 31  
         public List<SubSearchInfo> getSubSearches() {
 32  0
                 return subSearches;
 33  
         }
 34  
         public void setSubSearches(List<SubSearchInfo> subSearches) {
 35  0
                 if(subSearches == null){
 36  0
                         subSearches = new ArrayList<SubSearchInfo>();
 37  
                 }
 38  0
                 this.subSearches = subSearches;
 39  0
         }
 40  
         public JoinCriteriaInfo getJoinCriteria() {
 41  0
                 return joinCriteria;
 42  
         }
 43  
         public void setJoinCriteria(JoinCriteriaInfo joinCriteria) {
 44  0
                 this.joinCriteria = joinCriteria;
 45  0
         }
 46  
         public List<JoinResultMappingInfo> getJoinResultMappings() {
 47  0
                 if(joinResultMappings == null){
 48  0
                         joinResultMappings = new ArrayList<JoinResultMappingInfo>();
 49  
                 }
 50  0
                 return joinResultMappings;
 51  
         }
 52  
         public void setJoinResultMappings(List<JoinResultMappingInfo> joinResultMappings) {
 53  0
                 this.joinResultMappings = joinResultMappings;
 54  0
         }
 55  
 }