View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.student.dataobject;
17  
18  import org.kuali.rice.core.api.util.type.KualiDecimal;
19  
20  import java.util.ArrayList;
21  import java.util.List;
22  
23  /**
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class Course {
27  
28      private String subjectId;
29      private String prefix;
30      private String number;
31      private String suffix;
32      private String title;
33      private String instanceId;
34      private String activityType;
35      private Integer minCredits;
36      private Integer maxCredits;
37      private String gradingOptions;
38      private String transcriptTitle;
39      private KualiDecimal fee;
40      private String offeringStatus;
41  
42      private List<CourseSection> sections;
43  
44      public Course() {
45          sections = new ArrayList<CourseSection>();
46      }
47  
48      public String getSubjectId() {
49          return subjectId;
50      }
51  
52      public void setSubjectId(String subjectId) {
53          this.subjectId = subjectId;
54      }
55  
56      public String getPrefix() {
57          return prefix;
58      }
59  
60      public void setPrefix(String prefix) {
61          this.prefix = prefix;
62      }
63  
64      public String getNumber() {
65          return number;
66      }
67  
68      public void setNumber(String number) {
69          this.number = number;
70      }
71  
72      public String getSuffix() {
73          return suffix;
74      }
75  
76      public void setSuffix(String suffix) {
77          this.suffix = suffix;
78      }
79  
80      public String getTitle() {
81          return title;
82      }
83  
84      public void setTitle(String title) {
85          this.title = title;
86      }
87  
88      public String getInstanceId() {
89          return instanceId;
90      }
91  
92      public void setInstanceId(String instanceId) {
93          this.instanceId = instanceId;
94      }
95  
96      public String getActivityType() {
97          return activityType;
98      }
99  
100     public void setActivityType(String activityType) {
101         this.activityType = activityType;
102     }
103 
104     public Integer getMinCredits() {
105         return minCredits;
106     }
107 
108     public void setMinCredits(Integer minCredits) {
109         this.minCredits = minCredits;
110     }
111 
112     public Integer getMaxCredits() {
113         return maxCredits;
114     }
115 
116     public void setMaxCredits(Integer maxCredits) {
117         this.maxCredits = maxCredits;
118     }
119 
120     public String getGradingOptions() {
121         return gradingOptions;
122     }
123 
124     public void setGradingOptions(String gradingOptions) {
125         this.gradingOptions = gradingOptions;
126     }
127 
128     public String getTranscriptTitle() {
129         return transcriptTitle;
130     }
131 
132     public void setTranscriptTitle(String transcriptTitle) {
133         this.transcriptTitle = transcriptTitle;
134     }
135 
136     public KualiDecimal getFee() {
137         return fee;
138     }
139 
140     public void setFee(KualiDecimal fee) {
141         this.fee = fee;
142     }
143 
144     public String getOfferingStatus() {
145         return offeringStatus;
146     }
147 
148     public void setOfferingStatus(String offeringStatus) {
149         this.offeringStatus = offeringStatus;
150     }
151 
152     public List<CourseSection> getSections() {
153         return sections;
154     }
155 
156     public void setSections(List<CourseSection> sections) {
157         this.sections = sections;
158     }
159 }