KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > tutorial > atm > types > OperationRequestType


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.2_01, compilación R40)
4
// Generated source version: 1.1.2
5

6 package org.jbpm.bpel.tutorial.atm.types;
7
8
9 public class OperationRequestType {
10     protected java.lang.String JavaDoc customerName;
11     protected double amount;
12     
13     public OperationRequestType() {
14     }
15     
16     public OperationRequestType(java.lang.String JavaDoc customerName, double amount) {
17         this.customerName = customerName;
18         this.amount = amount;
19     }
20     
21     public java.lang.String JavaDoc getCustomerName() {
22         return customerName;
23     }
24     
25     public void setCustomerName(java.lang.String JavaDoc customerName) {
26         this.customerName = customerName;
27     }
28     
29     public double getAmount() {
30         return amount;
31     }
32     
33     public void setAmount(double amount) {
34         this.amount = amount;
35     }
36 }
37
Popular Tags