1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r1.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.XmlAttribute;
22 import javax.xml.bind.annotation.XmlElement;
23
24 @Deprecated
25 @XmlAccessorType(XmlAccessType.FIELD)
26 public class ResultColumnInfo implements Serializable {
27 private static final long serialVersionUID = 1L;
28 @XmlElement
29 private String name;
30 @XmlElement
31 private String desc;
32 @XmlElement
33 private String dataType;
34 @XmlAttribute
35 private String key;
36 public String getName(){
37 return name;
38 }
39 public void setName(String name){
40 this.name = name;
41 }
42 public String getDesc(){
43 return desc;
44 }
45 public void setDesc(String desc){
46 this.desc = desc;
47 }
48 public String getDataType(){
49 return dataType;
50 }
51 public void setDataType(String dataType){
52 this.dataType = dataType;
53 }
54 public String getKey(){
55 return key;
56 }
57 public void setKey(String key){
58 this.key = key;
59 }
60 }