1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "request_data.h" 17 18 #include "http_constant.h" 19 20 namespace OHOS { 21 namespace ACELite { 22 RequestData()23RequestData::RequestData() 24 { 25 method = HttpConstant::HTTP_METHOD_GET; // default 26 header[HttpConstant::HTTP_HEADER_KEY_CONTENT_TYPE] = HttpConstant::HTTP_DEFAULT_CONTENT_TYPE; // default 27 } 28 SetUrl(const std::string & urlPara)29void RequestData::SetUrl(const std::string &urlPara) 30 { 31 url = urlPara; 32 } 33 SetMethod(const std::string & methodPara)34void RequestData::SetMethod(const std::string &methodPara) 35 { 36 method = methodPara; 37 } 38 SetHeader(const std::string & key,const std::string & val)39void RequestData::SetHeader(const std::string &key, const std::string &val) 40 { 41 header[key] = val; 42 } 43 SetBody(const std::string & bodyPara)44void RequestData::SetBody(const std::string &bodyPara) 45 { 46 body = bodyPara; 47 } 48 SetResponseType(const std::string & respType)49void RequestData::SetResponseType(const std::string &respType) 50 { 51 responseType = respType; 52 } 53 GetUrl() const54const std::string &RequestData::GetUrl() const 55 { 56 return url; 57 } 58 GetHeader() const59const std::map<std::string, std::string> &RequestData::GetHeader() const 60 { 61 return header; 62 } 63 GetMethod() const64const std::string &RequestData::GetMethod() const 65 { 66 return method; 67 } 68 GetBody() const69const std::string &RequestData::GetBody() const 70 { 71 return body; 72 } 73 GetResponseType() const74const std::string &RequestData::GetResponseType() const 75 { 76 return responseType; 77 } 78 } // namespace ACELite 79 } // namespace OHOS 80