001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)MessageAttributes.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.jbi.binding.jms.monitoring;
030:
031: /**
032: *
033: *
034: * @author Sun Microsystems Inc.
035: */
036: public class MessageAttributes {
037: /**
038: *
039: */
040: /**
041: *
042: */
043: /**
044: *
045: */
046:
047: /**
048: *
049: */
050: private MessageStatus mStatus;
051:
052: /**
053: *
054: */
055: /**
056: *
057: */
058: /**
059: *
060: */
061:
062: /**
063: *
064: */
065: private String mEndpointName;
066:
067: /**
068: *
069: */
070: /**
071: *
072: */
073: /**
074: *
075: */
076:
077: /**
078: *
079: */
080: private String mJMSMessageId;
081:
082: /**
083: *
084: */
085: /**
086: *
087: */
088: /**
089: *
090: */
091:
092: /**
093: *
094: */
095: private String mNMSMessageId;
096:
097: /**
098: *
099: */
100: /**
101: *
102: */
103: /**
104: *
105: */
106:
107: /**
108: *
109: */
110: private String mServicename;
111:
112: /**
113: *
114: */
115: /**
116: *
117: */
118: /**
119: *
120: */
121:
122: /**
123: *
124: */
125: private String mTimeStamp;
126:
127: /**
128: * Setter for property mEndpointName.
129: *
130: * @param mEndpointName New value of property mEndpointName.
131: */
132: public void setMEndpointName(java.lang.String mEndpointName) {
133: this .mEndpointName = mEndpointName;
134: }
135:
136: /**
137: * Getter for property mEndpointName.
138: *
139: * @return Value of property mEndpointName.
140: */
141: public java.lang.String getMEndpointName() {
142: return mEndpointName;
143: }
144:
145: /**
146: * Setter for property mJMSMessageId.
147: *
148: * @param mJMSMessageId New value of property mJMSMessageId.
149: */
150: public void setMJMSMessageId(java.lang.String mJMSMessageId) {
151: this .mJMSMessageId = mJMSMessageId;
152: }
153:
154: /**
155: * Getter for property mJMSMessageId.
156: *
157: * @return Value of property mJMSMessageId.
158: */
159: public java.lang.String getMJMSMessageId() {
160: return mJMSMessageId;
161: }
162:
163: /**
164: * Setter for property mNMSMessageId.
165: *
166: * @param mNMSMessageId New value of property mNMSMessageId.
167: */
168: public void setMNMSMessageId(java.lang.String mNMSMessageId) {
169: this .mNMSMessageId = mNMSMessageId;
170: }
171:
172: /**
173: * Getter for property mNMSMessageId.
174: *
175: * @return Value of property mNMSMessageId.
176: */
177: public java.lang.String getMNMSMessageId() {
178: return mNMSMessageId;
179: }
180:
181: /**
182: * Setter for property mServicename.
183: *
184: * @param mServicename New value of property mServicename.
185: */
186: public void setMServicename(java.lang.String mServicename) {
187: this .mServicename = mServicename;
188: }
189:
190: /**
191: * Getter for property mServicename.
192: *
193: * @return Value of property mServicename.
194: */
195: public java.lang.String getMServicename() {
196: return mServicename;
197: }
198:
199: /**
200: * Setter for property mStatus.
201: *
202: * @param mStatus New value of property mStatus.
203: */
204: public void setMStatus(MessageStatus mStatus) {
205: this .mStatus = mStatus;
206: }
207:
208: /**
209: * Getter for property mStatus.
210: *
211: * @return Value of property mStatus.
212: */
213: public MessageStatus getMStatus() {
214: return mStatus;
215: }
216:
217: /**
218: * Setter for property mTimeStamp.
219: *
220: * @param mTimeStamp New value of property mTimeStamp.
221: */
222: public void setMTimeStamp(java.lang.String mTimeStamp) {
223: this .mTimeStamp = mTimeStamp;
224: }
225:
226: /**
227: * Getter for property mTimeStamp.
228: *
229: * @return Value of property mTimeStamp.
230: */
231: public java.lang.String getMTimeStamp() {
232: return mTimeStamp;
233: }
234: }
|