1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.search.dto;
17 import java.io.Serializable;
18
19 import javax.xml.bind.annotation.XmlAccessType;
20 import javax.xml.bind.annotation.XmlAccessorType;
21 import javax.xml.bind.annotation.XmlElement;
22
23
24 @XmlAccessorType(XmlAccessType.FIELD)
25 public class SearchRelationship implements Serializable {
26 private static final long serialVersionUID = 1L;
27 @XmlElement
28 private TypeAttribute lhs;
29 @XmlElement
30 private TypeAttribute rhs;
31 public TypeAttribute getLhs(){
32 return lhs;
33 }
34 public void setLhs(TypeAttribute lhs){
35 this.lhs = lhs;
36 }
37 public TypeAttribute getRhs(){
38 return rhs;
39 }
40 public void setRhs(TypeAttribute rhs){
41 this.rhs = rhs;
42 }
43 }