1 37 38 package com.sun.j2ee.blueprints.consumerwebsite; 39 40 import java.io.Serializable ; 41 42 43 44 47 public class CheckoutBean implements Serializable { 48 49 50 private String orderId = null; 51 52 53 54 public CheckoutBean(String orderId) { 55 this.orderId = orderId; 56 57 } 58 59 61 public String getOrderId() { 62 return orderId; 63 } 64 65 66 public String toString() { 67 return "CustomerBean[orderId=" + orderId + "]"; 68 } 69 70 } 71 | Popular Tags |