org.kantega.respiro.exchanges.rest.MessageJs Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2019 Kantega AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kantega.respiro.exchanges.rest;
/**
*
*/
public class MessageJs {
private String payload;
private String address;
private String responseCode;
private String type;
private String protocol;
private String method;
private String headers;
private String responseStatus;
public void setPayload(String payload) {
this.payload = payload;
}
public String getPayload() {
return payload;
}
public void setAddress(String address) {
this.address = address;
}
public String getAddress() {
return address;
}
public void setResponseCode(String responseCode) {
this.responseCode = responseCode;
}
public String getResponseCode() {
return responseCode;
}
public void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
public void setProtocol(String protocol) {
this.protocol = protocol;
}
public String getProtocol() {
return protocol;
}
public void setMethod(String method) {
this.method = method;
}
public String getMethod() {
return method;
}
public void setHeaders(String headers) {
this.headers = headers;
}
public String getHeaders() {
return headers;
}
public void setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
}
public String getResponseStatus() {
return responseStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy