View Javadoc
1   /**
2    * Copyright 2005-2016 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.collections;
17  
18  import org.kuali.rice.krad.demo.travel.dataobject.TravelAccount;
19  import org.kuali.rice.krad.web.form.UifFormBase;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  
24  /**
25   * Created by nigupta on 5/15/2014.
26   */
27  public class TravelAccountCollectionsForm extends UifFormBase {
28  
29      private List<TravelAccount> travelAccountList = new ArrayList<TravelAccount>();
30  
31      private String accountNumberField;
32      private String accountNameField;
33      private String accountTypeCode;
34  
35      public TravelAccountCollectionsForm() {
36          super();
37      }
38  
39      public List<TravelAccount> getTravelAccountList() {
40          return travelAccountList;
41      }
42  
43      public void setTravelAccountList( List<TravelAccount> list ) {
44          travelAccountList = list;
45      }
46  
47  
48      public String getAccountNameField() {
49          return accountNameField;
50      }
51  
52      public void setAccountNameField(String accountNameField) {
53          this.accountNameField = accountNameField;
54      }
55  
56      public String getAccountNumberField() {
57          return accountNumberField;
58      }
59  
60      public void setAccountNumberField(String accountNumberField) {
61          this.accountNumberField = accountNumberField;
62      }
63  
64      public String getAccountTypeCode() {
65          return accountTypeCode;
66      }
67  
68      public void setAccountTypeCode( String code ) {
69          accountTypeCode = code;
70      }
71  }