KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > rift > coad > daemon > messageservice > db > MessageProperty


1 package com.rift.coad.daemon.messageservice.db;
2 // Generated Feb 19, 2007 7:55:38 AM by Hibernate Tools 3.2.0.beta6a
3

4
5
6 /**
7  * MessageProperty generated by hbm2java
8  */

9 public class MessageProperty implements java.io.Serializable JavaDoc {
10
11     // Fields
12

13      /**
14       * auto_increment
15  *
16      */

17      private Integer JavaDoc id;
18      private String JavaDoc name;
19      private Integer JavaDoc boolValue;
20      private Integer JavaDoc byteValue;
21      private Double JavaDoc doubleValue;
22      private Float JavaDoc floatValue;
23      private Integer JavaDoc intValue;
24      private Long JavaDoc longValue;
25      private String JavaDoc stringValue;
26      private byte[] objectValue;
27      private Message message;
28
29      // Constructors
30

31     /** default constructor */
32     public MessageProperty() {
33     }
34
35     /** minimal constructor */
36     public MessageProperty(String JavaDoc name) {
37         this.name = name;
38     }
39     /** full constructor */
40     public MessageProperty(String JavaDoc name, Integer JavaDoc boolValue, Integer JavaDoc byteValue, Double JavaDoc doubleValue, Float JavaDoc floatValue, Integer JavaDoc intValue, Long JavaDoc longValue, String JavaDoc stringValue, byte[] objectValue, Message message) {
41        this.name = name;
42        this.boolValue = boolValue;
43        this.byteValue = byteValue;
44        this.doubleValue = doubleValue;
45        this.floatValue = floatValue;
46        this.intValue = intValue;
47        this.longValue = longValue;
48        this.stringValue = stringValue;
49        this.objectValue = objectValue;
50        this.message = message;
51     }
52     
53    
54     // Property accessors
55
/**
56      * * auto_increment
57      *
58      */

59     public Integer JavaDoc getId() {
60         return this.id;
61     }
62     
63     public void setId(Integer JavaDoc id) {
64         this.id = id;
65     }
66     public String JavaDoc getName() {
67         return this.name;
68     }
69     
70     public void setName(String JavaDoc name) {
71         this.name = name;
72     }
73     public Integer JavaDoc getBoolValue() {
74         return this.boolValue;
75     }
76     
77     public void setBoolValue(Integer JavaDoc boolValue) {
78         this.boolValue = boolValue;
79     }
80     public Integer JavaDoc getByteValue() {
81         return this.byteValue;
82     }
83     
84     public void setByteValue(Integer JavaDoc byteValue) {
85         this.byteValue = byteValue;
86     }
87     public Double JavaDoc getDoubleValue() {
88         return this.doubleValue;
89     }
90     
91     public void setDoubleValue(Double JavaDoc doubleValue) {
92         this.doubleValue = doubleValue;
93     }
94     public Float JavaDoc getFloatValue() {
95         return this.floatValue;
96     }
97     
98     public void setFloatValue(Float JavaDoc floatValue) {
99         this.floatValue = floatValue;
100     }
101     public Integer JavaDoc getIntValue() {
102         return this.intValue;
103     }
104     
105     public void setIntValue(Integer JavaDoc intValue) {
106         this.intValue = intValue;
107     }
108     public Long JavaDoc getLongValue() {
109         return this.longValue;
110     }
111     
112     public void setLongValue(Long JavaDoc longValue) {
113         this.longValue = longValue;
114     }
115     public String JavaDoc getStringValue() {
116         return this.stringValue;
117     }
118     
119     public void setStringValue(String JavaDoc stringValue) {
120         this.stringValue = stringValue;
121     }
122     public byte[] getObjectValue() {
123         return this.objectValue;
124     }
125     
126     public void setObjectValue(byte[] objectValue) {
127         this.objectValue = objectValue;
128     }
129     public Message getMessage() {
130         return this.message;
131     }
132     
133     public void setMessage(Message message) {
134         this.message = message;
135     }
136
137
138
139
140 }
141
142
143
Popular Tags