/* * Copyright 2016 Huawei Technologies Co., Ltd. * * 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.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient; import java.util.Map; /** * Response for RestFul requests.
*

*

* * @author * @version 28-May-2016 */ public class RestfulResponse { private String responseContent; private int status = -1; private Map respHeaderMap = null; /** *
* * @return * @since */ public int getStatus() { return status; } /** *
* * @param status * @since */ public void setStatus(final int status) { this.status = status; } /** *
* * @return * @since */ public Map getRespHeaderMap() { return respHeaderMap; } /** *
* * @param header * @since */ public void setRespHeaderMap(final Map header) { this.respHeaderMap = header; } /** * Get response header value as integer.
* * @param key header param name. * @return header param value as integer. (-1 if error) * @since */ public int getRespHeaderInt(final String key) { if(respHeaderMap != null) { final String result = respHeaderMap.get(key); if(result != null) { return Integer.parseInt(result); } } return -1; } /** * Get response header value as long.
* * @param key header param name. * @return value as long. -1 if no value. * @since */ public long getRespHeaderLong(final String key) { if(respHeaderMap != null) { final String result = respHeaderMap.get(key); if(result != null) { return Long.parseLong(result); } } return -1; } /** * Get http header as string.
* * @param key header name. * @return header value. * @since */ public String getRespHeaderStr(final String key) { if(respHeaderMap != null) { return respHeaderMap.get(key); } return null; } /** *
* * @return * @since */ public String getResponseContent() { return responseContent; } /** *
* * @param responseString * @since */ public void setResponseJson(final String responseString) { this.responseContent = responseString; } }