1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r1.common.dictionary.old.dto;
17
18 import java.io.Serializable;
19
20 import javax.xml.bind.annotation.XmlAccessType;
21 import javax.xml.bind.annotation.XmlAccessorType;
22 import javax.xml.bind.annotation.XmlAttribute;
23
24
25 @Deprecated
26 @XmlAccessorType(XmlAccessType.FIELD)
27 public class LookupKeyConstraint implements Serializable {
28
29 private static final long serialVersionUID = 1L;
30
31 @XmlAttribute
32 protected String field;
33
34 @XmlAttribute
35 protected String mapsTo;
36
37
38
39
40 public String getField() {
41 return field;
42 }
43
44
45
46
47 public void setField(String field) {
48 this.field = field;
49 }
50
51
52
53
54 public String getMapsTo() {
55 return mapsTo;
56 }
57
58
59
60
61 public void setMapsTo(String mapsTo) {
62 this.mapsTo = mapsTo;
63 }
64 }