forked from loafle/openapi-generator-original
- Handling `std::set` in cpp-restdsk - Member variables using `std:set` added to `Pet` in cpp-restsdk 3.0 Petstore sample [cpp-pistache-server] taking into account a remark on this issue about cpp-pistache-server and its set management - Switching `std::vector` to `std::set` for openapi set type in cpp-pistache-server
86 lines
1.8 KiB
C++
86 lines
1.8 KiB
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI-Generator 7.6.0-SNAPSHOT.
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#include "CppRestPetstoreClient/ApiConfiguration.h"
|
|
|
|
namespace org {
|
|
namespace openapitools {
|
|
namespace client {
|
|
namespace api {
|
|
|
|
ApiConfiguration::ApiConfiguration()
|
|
{
|
|
}
|
|
|
|
ApiConfiguration::~ApiConfiguration()
|
|
{
|
|
}
|
|
|
|
const web::http::client::http_client_config& ApiConfiguration::getHttpConfig() const
|
|
{
|
|
return m_HttpConfig;
|
|
}
|
|
|
|
void ApiConfiguration::setHttpConfig( web::http::client::http_client_config& value )
|
|
{
|
|
m_HttpConfig = value;
|
|
}
|
|
|
|
utility::string_t ApiConfiguration::getBaseUrl() const
|
|
{
|
|
return m_BaseUrl;
|
|
}
|
|
|
|
void ApiConfiguration::setBaseUrl( const utility::string_t value )
|
|
{
|
|
m_BaseUrl = value;
|
|
}
|
|
|
|
utility::string_t ApiConfiguration::getUserAgent() const
|
|
{
|
|
return m_UserAgent;
|
|
}
|
|
|
|
void ApiConfiguration::setUserAgent( const utility::string_t value )
|
|
{
|
|
m_UserAgent = value;
|
|
}
|
|
|
|
std::map<utility::string_t, utility::string_t>& ApiConfiguration::getDefaultHeaders()
|
|
{
|
|
return m_DefaultHeaders;
|
|
}
|
|
|
|
const std::map<utility::string_t, utility::string_t>& ApiConfiguration::getDefaultHeaders() const
|
|
{
|
|
return m_DefaultHeaders;
|
|
}
|
|
|
|
utility::string_t ApiConfiguration::getApiKey( const utility::string_t& prefix) const
|
|
{
|
|
auto result = m_ApiKeys.find(prefix);
|
|
if( result != m_ApiKeys.end() )
|
|
{
|
|
return result->second;
|
|
}
|
|
return utility::conversions::to_string_t("");
|
|
}
|
|
|
|
void ApiConfiguration::setApiKey( const utility::string_t& prefix, const utility::string_t& apiKey )
|
|
{
|
|
m_ApiKeys[prefix] = apiKey;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|