97cc39a6b13139dcf068082bc90d35fd652acf54
[dmaap/messagerouter/dmaapclient.git] / src / main / java / org / onap / dmaap / mr / client / response / MRPublisherResponse.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Modifications Copyright © 2021 Orange.
8  *  ================================================================================
9  *  Licensed under the Apache License, Version 2.0 (the "License");
10  *  you may not use this file except in compliance with the License.
11  *  You may obtain a copy of the License at
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *  ============LICENSE_END=========================================================
20  *
21  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  *
23  *******************************************************************************/
24
25 package org.onap.dmaap.mr.client.response;
26
27 /**
28  * Response for Publisher.
29  *
30  * @author author
31  */
32 public class MRPublisherResponse {
33     private String responseCode;
34
35     private String responseMessage;
36
37     private int pendingMsgs;
38
39     public String getResponseCode() {
40         return responseCode;
41     }
42
43     public void setResponseCode(String responseCode) {
44         this.responseCode = responseCode;
45     }
46
47     public String getResponseMessage() {
48         return responseMessage;
49     }
50
51     public void setResponseMessage(String responseMessage) {
52         this.responseMessage = responseMessage;
53     }
54
55     public int getPendingMsgs() {
56         return pendingMsgs;
57     }
58
59     public void setPendingMsgs(int pendingMsgs) {
60         this.pendingMsgs = pendingMsgs;
61     }
62
63     @Override
64     public String toString() {
65         return "Response Code:" + this.responseCode + ","
66                 + "Response Message:" + this.responseMessage + "," + "Pending Messages Count"
67                 + this.pendingMsgs;
68     }
69
70 }