001: package com.rift.coad.daemon.messageservice.db;
002:
003: // Generated Feb 19, 2007 7:55:38 AM by Hibernate Tools 3.2.0.beta6a
004:
005: /**
006: * MessageProperty generated by hbm2java
007: */
008: public class MessageProperty implements java.io.Serializable {
009:
010: // Fields
011:
012: /**
013: * auto_increment
014: *
015: */
016: private Integer id;
017: private String name;
018: private Integer boolValue;
019: private Integer byteValue;
020: private Double doubleValue;
021: private Float floatValue;
022: private Integer intValue;
023: private Long longValue;
024: private String stringValue;
025: private byte[] objectValue;
026: private Message message;
027:
028: // Constructors
029:
030: /** default constructor */
031: public MessageProperty() {
032: }
033:
034: /** minimal constructor */
035: public MessageProperty(String name) {
036: this .name = name;
037: }
038:
039: /** full constructor */
040: public MessageProperty(String name, Integer boolValue,
041: Integer byteValue, Double doubleValue, Float floatValue,
042: Integer intValue, Long longValue, String stringValue,
043: byte[] objectValue, Message message) {
044: this .name = name;
045: this .boolValue = boolValue;
046: this .byteValue = byteValue;
047: this .doubleValue = doubleValue;
048: this .floatValue = floatValue;
049: this .intValue = intValue;
050: this .longValue = longValue;
051: this .stringValue = stringValue;
052: this .objectValue = objectValue;
053: this .message = message;
054: }
055:
056: // Property accessors
057: /**
058: * * auto_increment
059: *
060: */
061: public Integer getId() {
062: return this .id;
063: }
064:
065: public void setId(Integer id) {
066: this .id = id;
067: }
068:
069: public String getName() {
070: return this .name;
071: }
072:
073: public void setName(String name) {
074: this .name = name;
075: }
076:
077: public Integer getBoolValue() {
078: return this .boolValue;
079: }
080:
081: public void setBoolValue(Integer boolValue) {
082: this .boolValue = boolValue;
083: }
084:
085: public Integer getByteValue() {
086: return this .byteValue;
087: }
088:
089: public void setByteValue(Integer byteValue) {
090: this .byteValue = byteValue;
091: }
092:
093: public Double getDoubleValue() {
094: return this .doubleValue;
095: }
096:
097: public void setDoubleValue(Double doubleValue) {
098: this .doubleValue = doubleValue;
099: }
100:
101: public Float getFloatValue() {
102: return this .floatValue;
103: }
104:
105: public void setFloatValue(Float floatValue) {
106: this .floatValue = floatValue;
107: }
108:
109: public Integer getIntValue() {
110: return this .intValue;
111: }
112:
113: public void setIntValue(Integer intValue) {
114: this .intValue = intValue;
115: }
116:
117: public Long getLongValue() {
118: return this .longValue;
119: }
120:
121: public void setLongValue(Long longValue) {
122: this .longValue = longValue;
123: }
124:
125: public String getStringValue() {
126: return this .stringValue;
127: }
128:
129: public void setStringValue(String stringValue) {
130: this .stringValue = stringValue;
131: }
132:
133: public byte[] getObjectValue() {
134: return this .objectValue;
135: }
136:
137: public void setObjectValue(byte[] objectValue) {
138: this .objectValue = objectValue;
139: }
140:
141: public Message getMessage() {
142: return this .message;
143: }
144:
145: public void setMessage(Message message) {
146: this.message = message;
147: }
148:
149: }
|