001/**
002 * Copyright 2005-2015 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
018import org.kuali.rice.krad.uif.util.SessionTransient;
019import org.kuali.rice.krad.web.form.UifFormBase;
020//import org.kuali.student.enrollment.registration.client.service.dto.CourseSearchResult;
021
022import java.util.List;
023
024/**
025 * Created with IntelliJ IDEA.
026 * User: swedev
027 * Date: 11/21/13
028 * Time: 1:33 PM
029 * To change this template use File | Settings | File Templates.
030 */
031public class KitchenSinkPerformanceForm extends UifFormBase {
032    private String inputOne;
033
034    protected List<CourseSearchResult> perfCollection;
035
036    public String getInputOne() {
037        return inputOne;
038    }
039
040    public void setInputOne(String inputOne) {
041        this.inputOne = inputOne;
042    }
043
044    public List<CourseSearchResult> getPerfCollection() {
045        return perfCollection;
046    }
047
048    public void setPerfCollection(List<CourseSearchResult> perfCollection) {
049        this.perfCollection = perfCollection;
050    }
051}