001/** 002 * Copyright 2005-2016 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.rice.krad.labs; 017 018/** 019 * Created by jcovey on 1/28/14. 020 */ 021public class CourseSearchResult { 022 023 private String courseOfferingId; 024 private String courseOfferingCode; 025 private boolean honorsCourse; 026 private boolean auditCourse; 027 private boolean studentSelectablePassFail; 028 private String courseOfferingDesc; 029 private String courseOfferingCreditOptionDisplay; 030 private String courseOfferingGradingOptionDisplay; 031 032 public CourseSearchResult() { 033 034 } 035 036 public String getCourseOfferingId() { 037 return courseOfferingId; 038 } 039 040 public void setCourseOfferingId(String courseOfferingId) { 041 this.courseOfferingId = courseOfferingId; 042 } 043 044 public String getCourseOfferingCode() { 045 return courseOfferingCode; 046 } 047 048 public void setCourseOfferingCode(String courseOfferingCode) { 049 this.courseOfferingCode = courseOfferingCode; 050 } 051 052 public boolean getHonorsCourse() { 053 return honorsCourse; 054 } 055 056 public void setHonorsCourse(boolean honorsCourse) { 057 this.honorsCourse = honorsCourse; 058 } 059 060 public boolean getAuditCourse() { 061 return auditCourse; 062 } 063 064 public void setAuditCourse(boolean auditCourse) { 065 this.auditCourse = auditCourse; 066 } 067 068 public boolean getStudentSelectablePassFail() { 069 return studentSelectablePassFail; 070 } 071 072 public void setStudentSelectablePassFail(boolean studentSelectablePassFail) { 073 this.studentSelectablePassFail = studentSelectablePassFail; 074 } 075 076 public String getCourseOfferingDesc() { 077 return courseOfferingDesc; 078 } 079 080 public void setCourseOfferingDesc(String courseOfferingDesc) { 081 this.courseOfferingDesc = courseOfferingDesc; 082 } 083 084 public String getCourseOfferingCreditOptionDisplay() { 085 return courseOfferingCreditOptionDisplay; 086 } 087 088 public void setCourseOfferingCreditOptionDisplay(String courseOfferingCreditOptionDisplay) { 089 this.courseOfferingCreditOptionDisplay = courseOfferingCreditOptionDisplay; 090 } 091 092 public String getCourseOfferingGradingOptionDisplay() { 093 return courseOfferingGradingOptionDisplay; 094 } 095 096 public void setCourseOfferingGradingOptionDisplay(String courseOfferingGradingOptionDisplay) { 097 this.courseOfferingGradingOptionDisplay = courseOfferingGradingOptionDisplay; 098 } 099}