01: /**
02: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
03: */package com.odal.petstore.persistence.gen.bean;
04:
05: public class InventoryPoBean implements java.io.Serializable {
06:
07: public InventoryPoBean() {
08: }
09:
10: //
11: // Basic object stuff:
12: //
13: public InventoryPoBean(String itemId) {
14: this ();
15: setItemId(itemId);
16: }
17:
18: private String itemId;
19: private long quantity;
20:
21: //
22: // itemId:
23: //
24: public String getItemId() {
25: return this .itemId;
26: }
27:
28: public void setItemId(String itemId) {
29: this .itemId = itemId;
30: }
31:
32: //
33: // quantity:
34: //
35: public long getQuantity() {
36: return this .quantity;
37: }
38:
39: public void setQuantity(long quantity) {
40: this .quantity = quantity;
41: }
42:
43: //
44: // Complex object part:
45: //
46:
47: //
48: // Compound object part:
49: //
50:
51: }
|