01: package com.rift.coad.daemon.messageservice.db;
02:
03: // Generated Feb 19, 2007 7:55:38 AM by Hibernate Tools 3.2.0.beta6a
04:
05: /**
06: * MessageRpcBody generated by hbm2java
07: */
08: public class MessageRpcBody implements java.io.Serializable {
09:
10: // Fields
11:
12: private String messageId;
13: private String xml;
14: private Integer generatedException;
15: private byte[] resultValue;
16: private byte[] exceptionValue;
17: private Message message;
18:
19: // Constructors
20:
21: /** default constructor */
22: public MessageRpcBody() {
23: }
24:
25: /** minimal constructor */
26: public MessageRpcBody(String messageId, String xml, Message message) {
27: this .messageId = messageId;
28: this .xml = xml;
29: this .message = message;
30: }
31:
32: /** full constructor */
33: public MessageRpcBody(String messageId, String xml,
34: Integer generatedException, byte[] resultValue,
35: byte[] exceptionValue, Message message) {
36: this .messageId = messageId;
37: this .xml = xml;
38: this .generatedException = generatedException;
39: this .resultValue = resultValue;
40: this .exceptionValue = exceptionValue;
41: this .message = message;
42: }
43:
44: // Property accessors
45: public String getMessageId() {
46: return this .messageId;
47: }
48:
49: public void setMessageId(String messageId) {
50: this .messageId = messageId;
51: }
52:
53: public String getXml() {
54: return this .xml;
55: }
56:
57: public void setXml(String xml) {
58: this .xml = xml;
59: }
60:
61: public Integer getGeneratedException() {
62: return this .generatedException;
63: }
64:
65: public void setGeneratedException(Integer generatedException) {
66: this .generatedException = generatedException;
67: }
68:
69: public byte[] getResultValue() {
70: return this .resultValue;
71: }
72:
73: public void setResultValue(byte[] resultValue) {
74: this .resultValue = resultValue;
75: }
76:
77: public byte[] getExceptionValue() {
78: return this .exceptionValue;
79: }
80:
81: public void setExceptionValue(byte[] exceptionValue) {
82: this .exceptionValue = exceptionValue;
83: }
84:
85: public Message getMessage() {
86: return this .message;
87: }
88:
89: public void setMessage(Message message) {
90: this.message = message;
91: }
92:
93: }
|