View Javadoc
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.quickfinder;
17  
18  import org.kuali.rice.krad.web.form.UifFormBase;
19  
20  import java.io.Serializable;
21  import java.util.ArrayList;
22  import java.util.List;
23  
24  /**
25   * Created by nigupta on 4/21/2014.
26   */
27  public class QuickfinderForm extends UifFormBase {
28  
29      private List<PersonAccount> peopleAccounts;
30  
31      private String nameField;
32      private String accountNumberField;
33      private String accountNameField;
34  
35      public QuickfinderForm() {
36          super();
37          peopleAccounts = new ArrayList<PersonAccount>();
38          peopleAccounts.add( new PersonAccount( "Abra" ) );
39          peopleAccounts.add( new PersonAccount( "Ca" ) );
40          peopleAccounts.add( new PersonAccount( "Dabra" ) );
41      }
42  
43      public String getAccountNameField() {
44          return accountNameField;
45      }
46  
47      public void setAccountNameField(String accountNameField) {
48          this.accountNameField = accountNameField;
49      }
50  
51      public String getAccountNumberField() {
52          return accountNumberField;
53      }
54  
55      public void setAccountNumberField(String accountNumberField) {
56          this.accountNumberField = accountNumberField;
57      }
58  
59      public String getNameField() {
60          return nameField;
61      }
62  
63      public void setNameField(String nameField) {
64          this.nameField = nameField;
65      }
66  
67      public List<PersonAccount> getPeopleAccounts() {
68          return peopleAccounts;
69      }
70  
71      public void setPeopleAccounts(List<PersonAccount> peopleAccounts) {
72          this.peopleAccounts = peopleAccounts;
73      }
74  }