001/**
002 * Copyright 2005-2017 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.collections;
017
018import org.kuali.rice.krad.demo.travel.dataobject.TravelAccount;
019import org.kuali.rice.krad.web.form.UifFormBase;
020
021import java.util.ArrayList;
022import java.util.List;
023
024/**
025 * Created by nigupta on 5/15/2014.
026 */
027public class TravelAccountCollectionsForm extends UifFormBase {
028
029    private List<TravelAccount> travelAccountList = new ArrayList<TravelAccount>();
030
031    private String accountNumberField;
032    private String accountNameField;
033    private String accountTypeCode;
034
035    public TravelAccountCollectionsForm() {
036        super();
037    }
038
039    public List<TravelAccount> getTravelAccountList() {
040        return travelAccountList;
041    }
042
043    public void setTravelAccountList( List<TravelAccount> list ) {
044        travelAccountList = list;
045    }
046
047
048    public String getAccountNameField() {
049        return accountNameField;
050    }
051
052    public void setAccountNameField(String accountNameField) {
053        this.accountNameField = accountNameField;
054    }
055
056    public String getAccountNumberField() {
057        return accountNumberField;
058    }
059
060    public void setAccountNumberField(String accountNumberField) {
061        this.accountNumberField = accountNumberField;
062    }
063
064    public String getAccountTypeCode() {
065        return accountTypeCode;
066    }
067
068    public void setAccountTypeCode( String code ) {
069        accountTypeCode = code;
070    }
071}