Coverage Report - edu.sampleu.student.dataobject.Course
 
Classes in this File Line Coverage Branch Coverage Complexity
Course
0%
0/45
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.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/ecl2.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.io.Serializable;
 21  
 import java.util.ArrayList;
 22  
 import java.util.List;
 23  
 
 24  
 /**
 25  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 26  
  */
 27  
 public class Course implements Serializable {
 28  
 
 29  
     private String subjectId;
 30  
     private String prefix;
 31  
     private String number;
 32  
     private String suffix;
 33  
     private String title;
 34  
     private String instanceId;
 35  
     private String activityType;
 36  
     private Integer minCredits;
 37  
     private Integer maxCredits;
 38  
     private String gradingOptions;
 39  
     private String transcriptTitle;
 40  
     private KualiDecimal fee;
 41  
     private String offeringStatus;
 42  
 
 43  
     private List<CourseSection> sections;
 44  
 
 45  0
     public Course() {
 46  0
         sections = new ArrayList<CourseSection>();
 47  0
     }
 48  
 
 49  
     public String getSubjectId() {
 50  0
         return subjectId;
 51  
     }
 52  
 
 53  
     public void setSubjectId(String subjectId) {
 54  0
         this.subjectId = subjectId;
 55  0
     }
 56  
 
 57  
     public String getPrefix() {
 58  0
         return prefix;
 59  
     }
 60  
 
 61  
     public void setPrefix(String prefix) {
 62  0
         this.prefix = prefix;
 63  0
     }
 64  
 
 65  
     public String getNumber() {
 66  0
         return number;
 67  
     }
 68  
 
 69  
     public void setNumber(String number) {
 70  0
         this.number = number;
 71  0
     }
 72  
 
 73  
     public String getSuffix() {
 74  0
         return suffix;
 75  
     }
 76  
 
 77  
     public void setSuffix(String suffix) {
 78  0
         this.suffix = suffix;
 79  0
     }
 80  
 
 81  
     public String getTitle() {
 82  0
         return title;
 83  
     }
 84  
 
 85  
     public void setTitle(String title) {
 86  0
         this.title = title;
 87  0
     }
 88  
 
 89  
     public String getInstanceId() {
 90  0
         return instanceId;
 91  
     }
 92  
 
 93  
     public void setInstanceId(String instanceId) {
 94  0
         this.instanceId = instanceId;
 95  0
     }
 96  
 
 97  
     public String getActivityType() {
 98  0
         return activityType;
 99  
     }
 100  
 
 101  
     public void setActivityType(String activityType) {
 102  0
         this.activityType = activityType;
 103  0
     }
 104  
 
 105  
     public Integer getMinCredits() {
 106  0
         return minCredits;
 107  
     }
 108  
 
 109  
     public void setMinCredits(Integer minCredits) {
 110  0
         this.minCredits = minCredits;
 111  0
     }
 112  
 
 113  
     public Integer getMaxCredits() {
 114  0
         return maxCredits;
 115  
     }
 116  
 
 117  
     public void setMaxCredits(Integer maxCredits) {
 118  0
         this.maxCredits = maxCredits;
 119  0
     }
 120  
 
 121  
     public String getGradingOptions() {
 122  0
         return gradingOptions;
 123  
     }
 124  
 
 125  
     public void setGradingOptions(String gradingOptions) {
 126  0
         this.gradingOptions = gradingOptions;
 127  0
     }
 128  
 
 129  
     public String getTranscriptTitle() {
 130  0
         return transcriptTitle;
 131  
     }
 132  
 
 133  
     public void setTranscriptTitle(String transcriptTitle) {
 134  0
         this.transcriptTitle = transcriptTitle;
 135  0
     }
 136  
 
 137  
     public KualiDecimal getFee() {
 138  0
         return fee;
 139  
     }
 140  
 
 141  
     public void setFee(KualiDecimal fee) {
 142  0
         this.fee = fee;
 143  0
     }
 144  
 
 145  
     public String getOfferingStatus() {
 146  0
         return offeringStatus;
 147  
     }
 148  
 
 149  
     public void setOfferingStatus(String offeringStatus) {
 150  0
         this.offeringStatus = offeringStatus;
 151  0
     }
 152  
 
 153  
     public List<CourseSection> getSections() {
 154  0
         return sections;
 155  
     }
 156  
 
 157  
     public void setSections(List<CourseSection> sections) {
 158  0
         this.sections = sections;
 159  0
     }
 160  
 }