001/**
002 * Copyright 2005-2013 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.test.conference;
017
018import org.kuali.rice.krad.data.util.Link;
019import org.kuali.rice.krad.web.bind.ChangeTracking;
020import org.kuali.rice.krad.web.form.UifFormBase;
021
022import java.util.ArrayList;
023import java.util.HashMap;
024import java.util.List;
025import java.util.Map;
026
027/**
028 * Test form class.
029 *
030 * @author Kuali Rice Team (rice.collab@kuali.org)
031 */
032@ChangeTracking
033@Link(path = {"conferenceSessionList", "conferenceSessionMap"})
034public class ConferenceSessionForm extends UifFormBase {
035    private static final long serialVersionUID = 2178491838787456800L;
036
037    List<ConferenceSession> conferenceSessionList;
038    Map<String, ConferenceSession> conferenceSessionMap;
039
040    public ConferenceSessionForm() {
041        conferenceSessionList = new ArrayList<ConferenceSession>();
042        conferenceSessionMap = new HashMap<String, ConferenceSession>();
043    }
044
045    public List<ConferenceSession> getConferenceSessionList() {
046        return conferenceSessionList;
047    }
048
049    public void setConferenceSessionList(List<ConferenceSession> conferenceSessionList) {
050        this.conferenceSessionList = conferenceSessionList;
051    }
052
053    public Map<String, ConferenceSession> getConferenceSessionMap() {
054        return conferenceSessionMap;
055    }
056
057    public void setConferenceSessionMap(Map<String, ConferenceSession> conferenceSessionMap) {
058        this.conferenceSessionMap = conferenceSessionMap;
059    }
060}