1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.lum.course.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 import javax.xml.bind.annotation.XmlElement;
24
25 import org.kuali.student.core.dto.Idable;
26
27
28
29
30
31
32
33
34
35
36 @XmlAccessorType(XmlAccessType.FIELD)
37 public class CourseCrossListingInfo implements Serializable, Idable {
38
39 private static final long serialVersionUID = 1L;
40
41 @XmlElement
42 private String subjectArea;
43
44 @XmlElement
45 private String department;
46
47 @XmlElement
48 private String courseNumberSuffix;
49
50 @XmlAttribute
51 private String type;
52
53 @XmlAttribute
54 private String id;
55
56
57
58
59 public String getSubjectArea() {
60 return subjectArea;
61 }
62
63 public void setSubjectArea(String subjectArea) {
64 this.subjectArea = subjectArea;
65 }
66
67
68
69
70 public String getDepartment() {
71 return department;
72 }
73
74 public void setDepartment(String department) {
75 this.department = department;
76 }
77
78
79
80
81 public String getCourseNumberSuffix() {
82 return courseNumberSuffix;
83 }
84
85 public void setCourseNumberSuffix(String courseNumberSuffix) {
86 this.courseNumberSuffix = courseNumberSuffix;
87 }
88
89
90
91
92 public String getType() {
93 return type;
94 }
95
96 public void setType(String type) {
97 this.type = type;
98 }
99
100
101
102
103 public String getId() {
104 return id;
105 }
106
107 public void setId(String id) {
108 this.id = id;
109 }
110 }