1 /** 2 * Copyright 2005-2014 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 org.kuali.rice.krad.labs; 17 18 import org.kuali.rice.krad.uif.util.SessionTransient; 19 import org.kuali.rice.krad.web.form.UifFormBase; 20 //import org.kuali.student.enrollment.registration.client.service.dto.CourseSearchResult; 21 22 import java.util.List; 23 24 /** 25 * Created with IntelliJ IDEA. 26 * User: swedev 27 * Date: 11/21/13 28 * Time: 1:33 PM 29 * To change this template use File | Settings | File Templates. 30 */ 31 public class KitchenSinkPerformanceForm extends UifFormBase { 32 private String inputOne; 33 34 protected List<CourseSearchResult> perfCollection; 35 36 public String getInputOne() { 37 return inputOne; 38 } 39 40 public void setInputOne(String inputOne) { 41 this.inputOne = inputOne; 42 } 43 44 public List<CourseSearchResult> getPerfCollection() { 45 return perfCollection; 46 } 47 48 public void setPerfCollection(List<CourseSearchResult> perfCollection) { 49 this.perfCollection = perfCollection; 50 } 51 }