Coverage Report - org.kuali.student.core.search.dto.JoinCriteriaInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
JoinCriteriaInfo
0%
0/14
0%
0/4
1.333
JoinCriteriaInfo$JoinType
0%
0/1
N/A
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.core.search.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 import java.util.List;
 21  
 
 22  
 import javax.xml.bind.annotation.XmlAccessType;
 23  
 import javax.xml.bind.annotation.XmlAccessorType;
 24  
 @XmlAccessorType(XmlAccessType.FIELD)
 25  0
 public class JoinCriteriaInfo implements Serializable {
 26  
         private static final long serialVersionUID = 1L;
 27  0
         public enum JoinType {AND,OR,NOT};
 28  
         
 29  
         private JoinType joinType;
 30  
         private List<JoinCriteriaInfo> joinCriteria;
 31  
         private List<JoinComparisonInfo> comparisons;
 32  
         public JoinType getJoinType() {
 33  0
                 return joinType;
 34  
         }
 35  
         public void setJoinType(JoinType joinType) {
 36  0
                 this.joinType = joinType;
 37  0
         }
 38  
         public List<JoinComparisonInfo> getComparisons() {
 39  0
                 if(comparisons==null){
 40  0
                         comparisons = new ArrayList<JoinComparisonInfo>();
 41  
                 }
 42  0
                 return comparisons;
 43  
         }
 44  
         public void setComparisons(List<JoinComparisonInfo> comparisons) {
 45  0
                 this.comparisons = comparisons;
 46  0
         }
 47  
         public List<JoinCriteriaInfo> getJoinCriteria() {
 48  0
                 if(joinCriteria==null){
 49  0
                         joinCriteria = new ArrayList<JoinCriteriaInfo>();
 50  
                 }
 51  0
                 return joinCriteria;
 52  
         }
 53  
         public void setJoinCriteria(List<JoinCriteriaInfo> joinCriteria) {
 54  0
                 this.joinCriteria = joinCriteria;
 55  0
         }
 56  
         
 57  
 }