01: /*
02: * Copyright (c) 2006, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.wso2.esb.services.tos;
18:
19: import java.util.Calendar;
20:
21: /**
22: *
23: *
24: */
25:
26: public class MessageSummaryData {
27:
28: private String serviceId;
29:
30: private String operationName;
31:
32: private Calendar timestamp;
33:
34: private String messageID;
35:
36: //private String messageFlow;
37:
38: public MessageSummaryData() {
39: }
40:
41: public String getServiceId() {
42: return serviceId;
43: }
44:
45: public void setServiceId(String serviceId) {
46: this .serviceId = serviceId;
47: }
48:
49: public String getOperationName() {
50: return operationName;
51: }
52:
53: public void setOperationName(String operationName) {
54: this .operationName = operationName;
55: }
56:
57: public Calendar getTimestamp() {
58: return timestamp;
59: }
60:
61: public void setTimestamp(Calendar timestamp) {
62: this .timestamp = timestamp;
63: }
64:
65: public String getMessageID() {
66: return messageID;
67: }
68:
69: public void setMessageID(String messageID) {
70: this .messageID = messageID;
71: }
72:
73: // public String getMessageFlow() {
74: // return messageFlow;
75: // }
76: //
77: // public void setMessageFlow(String messageFlow) {
78: // this.messageFlow = messageFlow;
79: // }
80: }
|