01: /**
02: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
03: */package com.odal.petstore.persistence.gen.bean;
04:
05: public class ProfilePoBean implements java.io.Serializable {
06:
07: public ProfilePoBean() {
08: }
09:
10: //
11: // Basic object stuff:
12: //
13: public ProfilePoBean(String userId) {
14: this ();
15: setUserId(userId);
16: }
17:
18: private String userId;
19: private String langPref;
20: private String favCategory;
21: private Long myListOpt;
22: private Long bannerOpt;
23:
24: //
25: // userId:
26: //
27: public String getUserId() {
28: return this .userId;
29: }
30:
31: public void setUserId(String userId) {
32: this .userId = userId;
33: }
34:
35: //
36: // langPref:
37: //
38: public String getLangPref() {
39: return this .langPref;
40: }
41:
42: public void setLangPref(String langPref) {
43: this .langPref = langPref;
44: }
45:
46: //
47: // favCategory:
48: //
49: public String getFavCategory() {
50: return this .favCategory;
51: }
52:
53: public void setFavCategory(String favCategory) {
54: this .favCategory = favCategory;
55: }
56:
57: //
58: // myListOpt:
59: //
60: public Long getMyListOpt() {
61: return this .myListOpt;
62: }
63:
64: public void setMyListOpt(Long myListOpt) {
65: this .myListOpt = myListOpt;
66: }
67:
68: //
69: // bannerOpt:
70: //
71: public Long getBannerOpt() {
72: return this .bannerOpt;
73: }
74:
75: public void setBannerOpt(Long bannerOpt) {
76: this .bannerOpt = bannerOpt;
77: }
78:
79: //
80: // Complex object part:
81: //
82:
83: //
84: // Compound object part:
85: //
86:
87: }
|