01: /**
02: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
03: */package com.odal.petstore.persistence.gen.bean;
04:
05: public class ProductPoBean implements java.io.Serializable {
06:
07: public ProductPoBean() {
08: }
09:
10: //
11: // Basic object stuff:
12: //
13: public ProductPoBean(String productId) {
14: this ();
15: setProductId(productId);
16: }
17:
18: private String productId;
19: private String category;
20: private String name;
21: private String descn;
22:
23: //
24: // productId:
25: //
26: public String getProductId() {
27: return this .productId;
28: }
29:
30: public void setProductId(String productId) {
31: this .productId = productId;
32: }
33:
34: //
35: // category:
36: //
37: public String getCategory() {
38: return this .category;
39: }
40:
41: public void setCategory(String category) {
42: this .category = category;
43: }
44:
45: //
46: // name:
47: //
48: public String getName() {
49: return this .name;
50: }
51:
52: public void setName(String name) {
53: this .name = name;
54: }
55:
56: //
57: // descn:
58: //
59: public String getDescn() {
60: return this .descn;
61: }
62:
63: public void setDescn(String descn) {
64: this .descn = descn;
65: }
66:
67: //
68: // Complex object part:
69: //
70:
71: //
72: // Compound object part:
73: //
74:
75: }
|