bump the version
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / dmf / mr / transaction / TrnRequest.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.dmf.mr.transaction;
23
24 /**
25  * Created for transaction enable logging details, this is nothing but a bean
26  * class.
27  * 
28  * @author nilanjana.maity
29  *
30  */
31 public class TrnRequest {
32
33         private String id;
34         private String requestCreate;
35         private String requestHost;
36         private String serverHost;
37         private String messageProceed;
38         private String totalMessage;
39         private String clientType;
40         private String url;
41
42         /**
43          * 
44          * 
45          * 
46          * @return id
47          * 
48          */
49         public String getId() {
50                 return id;
51         }
52
53         /**
54          * 
55          * 
56          * @param id
57          */
58         public void setId(String id) {
59                 this.id = id;
60         }
61
62         /**
63          * 
64          * 
65          * @return requestCreate
66          */
67         public String getRequestCreate() {
68                 return requestCreate;
69         }
70
71         /**
72          * 
73          * @param requestCreate
74          */
75         public void setRequestCreate(String requestCreate) {
76                 this.requestCreate = requestCreate;
77         }
78
79         /**
80          * 
81          * @return
82          */
83         public String getRequestHost() {
84                 return requestHost;
85         }
86
87         /**
88          * 
89          * @param requestHost
90          */
91         public void setRequestHost(String requestHost) {
92                 this.requestHost = requestHost;
93         }
94
95         /**
96          * 
97          * 
98          * 
99          * @return
100          */
101         public String getServerHost() {
102                 return serverHost;
103         }
104
105         /**
106          * 
107          * @param serverHost
108          */
109         public void setServerHost(String serverHost) {
110                 this.serverHost = serverHost;
111         }
112
113         /**
114          * 
115          * 
116          * 
117          * @return
118          */
119         public String getMessageProceed() {
120                 return messageProceed;
121         }
122
123         /**
124          * 
125          * @param messageProceed
126          */
127         public void setMessageProceed(String messageProceed) {
128                 this.messageProceed = messageProceed;
129         }
130
131         /**
132          * 
133          * @return
134          */
135         public String getTotalMessage() {
136                 return totalMessage;
137         }
138
139         /**
140          * 
141          * @param totalMessage
142          * 
143          * 
144          */
145         public void setTotalMessage(String totalMessage) {
146                 this.totalMessage = totalMessage;
147         }
148
149         /**
150          * 
151          * @return
152          */
153         public String getClientType() {
154                 return clientType;
155         }
156
157         /**
158          * 
159          * @param clientType
160          * 
161          */
162         public void setClientType(String clientType) {
163                 this.clientType = clientType;
164         }
165
166         /**
167          * 
168          * @return
169          */
170         public String getUrl() {
171                 return url;
172         }
173
174         /**
175          * 
176          * @param url
177          * 
178          */
179         public void setUrl(String url) {
180                 this.url = url;
181         }
182
183 }