blob: 536be2d1d20121d043b914a1b8fa661fafef168a [file] [log] [blame]
/*-
* ============LICENSE_START=======================================================
* OSAM
* ================================================================================
* Copyright (C) 2018 AT&T
* ================================================================================
* 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.
* ============LICENSE_END=========================================================
*/
package org.onap.simulator.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.JsonNode;
import java.util.Map;
public class SimulatorResponse {
private int responseCode;
private Map<String, String> responseHeaders;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String body;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String file;
public int getResponseCode() {
return responseCode;
}
public void setResponseCode(int responseCode) {
this.responseCode = responseCode;
}
public String getBody() {
return body;
}
public void setBody(JsonNode body) {
this.body = body.isTextual() ? body.textValue() : body.toString();
}
public Map<String, String> getResponseHeaders() {
return responseHeaders;
}
public void setResponseHeaders(Map<String, String> responseHeaders) {
this.responseHeaders = responseHeaders;
}
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
@Override
public String toString() {
return "SimulatorResponse{" +
"responseCode=" + responseCode +
", body='" + body + '\'' +
", file='" + file + '\'' +
", responseHeaders='" + responseHeaders + '\'' +
'}';
}
}