01: package com.mockrunner.example.jdbc;
02:
03: import org.apache.struts.action.ActionForm;
04:
05: /**
06: * The <code>ActionForm</code> for the {@link PayAction}.
07: */
08: public class PayForm extends ActionForm {
09: private String customerId;
10: private String billId;
11: private double amount;
12:
13: public double getAmount() {
14: return amount;
15: }
16:
17: public String getBillId() {
18: return billId;
19: }
20:
21: public String getCustomerId() {
22: return customerId;
23: }
24:
25: public void setAmount(double amount) {
26: this .amount = amount;
27: }
28:
29: public void setBillId(String billId) {
30: this .billId = billId;
31: }
32:
33: public void setCustomerId(String customerId) {
34: this.customerId = customerId;
35: }
36: }
|