Coverage Report - org.kuali.student.enrollment.class2.courseoffering.dto.FormatOfferingInfoFormObject
 
Classes in this File Line Coverage Branch Coverage Complexity
FormatOfferingInfoFormObject
0%
0/34
N/A
1
 
 1  
 /**
 2  
  * Copyright 2012 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  *
 15  
  * Created by mharmath on 5/17/12
 16  
  */
 17  
 package org.kuali.student.enrollment.class2.courseoffering.dto;
 18  
 
 19  
 import org.kuali.rice.krad.web.form.UifFormBase;
 20  
 import org.kuali.student.enrollment.courseoffering.dto.FormatOfferingInfo;
 21  
 import java.util.ArrayList;
 22  
 import java.util.List;
 23  
 /**
 24  
  * This class //TODO ...
 25  
  *
 26  
  * @author Kuali Student Team
 27  
  */
 28  
 public class FormatOfferingInfoFormObject extends UifFormBase {
 29  
 
 30  
     private String id;
 31  
     private String formatName;
 32  
     private String formatDesc;
 33  
     private String courseOfferingId;
 34  
     private String formatId;
 35  
     private String termId;
 36  
     private List<String> activityOfferingTypeKeys;
 37  
     private String gradeRosterLevelTypeKey;
 38  
     private String finalExamLevelTypeKey;
 39  
 
 40  0
     private FormatOfferingInfo formatOfferingInfo = new FormatOfferingInfo();
 41  
     
 42  
     public FormatOfferingInfoFormObject(FormatOfferingInfo info){
 43  0
         super();
 44  0
         formatOfferingInfo = info;
 45  0
     }
 46  
     
 47  
     public FormatOfferingInfo getFormatOfferingInfo() {
 48  0
         return formatOfferingInfo;
 49  
     }
 50  
 
 51  
     public void setFormatOfferingInfo(FormatOfferingInfo formatOfferingInfo) {
 52  0
         this.formatOfferingInfo = formatOfferingInfo;
 53  0
     }
 54  
 
 55  
     public String getId() {
 56  0
         return id;
 57  
     }
 58  
 
 59  
     public void setId(String id) {
 60  0
         this.id = id;
 61  0
     }
 62  
 
 63  
     public String getFormatName() {
 64  0
             return formatName;
 65  
     }
 66  
 
 67  
     public void setFormatName(String formatName) {
 68  0
         this.formatName = formatName;
 69  0
     }
 70  
 
 71  
     public String getFormatDesc() {
 72  0
         return formatDesc;
 73  
     }
 74  
 
 75  
     public void setFormatDesc(String formatDesc) {
 76  0
         this.formatDesc = formatDesc;
 77  0
     }
 78  
 
 79  
     public String getCourseOfferingId() {
 80  0
         return courseOfferingId;
 81  
     }
 82  
 
 83  
     public void setCourseOfferingId(String courseOfferingId) {
 84  0
         this.courseOfferingId = courseOfferingId;
 85  0
     }
 86  
 
 87  
     public String getFormatId() {
 88  0
         return formatId;
 89  
     }
 90  
 
 91  
     public void setFormatId(String formatId) {
 92  0
         this.formatId = formatId;
 93  0
     }
 94  
 
 95  
     public String getTermId() {
 96  0
         return termId;
 97  
     }
 98  
 
 99  
     public void setTermId(String termId) {
 100  0
         this.termId = termId;
 101  0
     }
 102  
 
 103  
     public List<String> getActivityOfferingTypeKeys() {
 104  0
         return activityOfferingTypeKeys;
 105  
     }
 106  
 
 107  
     public void setActivityOfferingTypeKeys(List<String> activityOfferingTypeKeys) {
 108  0
         this.activityOfferingTypeKeys = activityOfferingTypeKeys;
 109  0
     }
 110  
 
 111  
     public String getGradeRosterLevelTypeKey() {
 112  0
         return gradeRosterLevelTypeKey;
 113  
     }
 114  
 
 115  
     public void setGradeRosterLevelTypeKey(String gradeRosterLevelTypeKey) {
 116  0
         this.gradeRosterLevelTypeKey = gradeRosterLevelTypeKey;
 117  0
     }
 118  
 
 119  
     public String getFinalExamLevelTypeKey() {
 120  0
         return finalExamLevelTypeKey;
 121  
     }
 122  
 
 123  
     public void setFinalExamLevelTypeKey(String finalExamLevelTypeKey) {
 124  0
         this.finalExamLevelTypeKey = finalExamLevelTypeKey;
 125  0
     }
 126  
 
 127  
 }
 128  
 
 129  
     
 130  
 
 131  
     
 132  
     
 133  
     
 134  
     
 135  
     
 136  
     
 137  
     
 138  
     
 139  
     
 140  
     
 141  
     
 142  
 
 143