1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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 }