01: /**
02: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
03: */package com.odal.petstore.persistence.gen.bean;
04:
05: import java.util.Date;
06:
07: public class OrderStatusPoBean implements java.io.Serializable {
08:
09: public OrderStatusPoBean() {
10: }
11:
12: //
13: // Basic object stuff:
14: //
15: public OrderStatusPoBean(long orderId) {
16: this ();
17: setOrderId(orderId);
18: }
19:
20: private long orderId;
21: private Date timestamp;
22: private String status;
23:
24: //
25: // orderId:
26: //
27: public long getOrderId() {
28: return this .orderId;
29: }
30:
31: public void setOrderId(long orderId) {
32: this .orderId = orderId;
33: }
34:
35: //
36: // timestamp:
37: //
38: public Date getTimestamp() {
39: return this .timestamp;
40: }
41:
42: public void setTimestamp(Date timestamp) {
43: this .timestamp = timestamp;
44: }
45:
46: //
47: // status:
48: //
49: public String getStatus() {
50: return this .status;
51: }
52:
53: public void setStatus(String status) {
54: this .status = status;
55: }
56:
57: //
58: // Complex object part:
59: //
60:
61: //
62: // Compound object part:
63: //
64:
65: }
|