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 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
@XmlAccessorType(XmlAccessType.FIELD) |
35 | 0 | public class CourseJointInfo implements Serializable { |
36 | |
|
37 | |
private static final long serialVersionUID = 1L; |
38 | |
|
39 | |
@XmlElement |
40 | |
private String courseNumberSuffix; |
41 | |
|
42 | |
@XmlElement |
43 | |
private String courseTitle; |
44 | |
|
45 | |
@XmlElement |
46 | |
private String subjectArea; |
47 | |
|
48 | |
@XmlAttribute |
49 | |
private String type; |
50 | |
|
51 | |
@XmlAttribute |
52 | |
private String courseId; |
53 | |
|
54 | |
@XmlAttribute |
55 | |
private String relationId; |
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
public String getCourseNumberSuffix() { |
61 | 0 | return courseNumberSuffix; |
62 | |
} |
63 | |
|
64 | |
public void setCourseNumberSuffix(String courseNumberSuffix) { |
65 | 0 | this.courseNumberSuffix = courseNumberSuffix; |
66 | 0 | } |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
public String getCourseTitle() { |
72 | 0 | return courseTitle; |
73 | |
} |
74 | |
|
75 | |
public void setCourseTitle(String courseTitle) { |
76 | 0 | this.courseTitle = courseTitle; |
77 | 0 | } |
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
public String getSubjectArea() { |
83 | 0 | return subjectArea; |
84 | |
} |
85 | |
|
86 | |
public void setSubjectArea(String subjectArea) { |
87 | 0 | this.subjectArea = subjectArea; |
88 | 0 | } |
89 | |
|
90 | |
|
91 | |
|
92 | |
|
93 | |
public String getType() { |
94 | 0 | return type; |
95 | |
} |
96 | |
|
97 | |
public void setType(String type) { |
98 | 0 | this.type = type; |
99 | 0 | } |
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
public String getCourseId() { |
105 | 0 | return courseId; |
106 | |
} |
107 | |
|
108 | |
public void setCourseId(String courseId) { |
109 | 0 | this.courseId = courseId; |
110 | 0 | } |
111 | |
|
112 | |
|
113 | |
|
114 | |
|
115 | |
public String getRelationId() { |
116 | 0 | return relationId; |
117 | |
} |
118 | |
|
119 | |
public void setRelationId(String relationId) { |
120 | 0 | this.relationId = relationId; |
121 | 0 | } |
122 | |
} |