| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 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 | |
} |