-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Carroll <[email protected]>
- Loading branch information
Showing
6 changed files
with
136 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright (C) 2017 Open Source Robotics Foundation | ||
* | ||
* 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. | ||
* | ||
*/ | ||
#ifndef GZ_FUEL_TOOLS_HTTPMETHOD_HH_ | ||
#define GZ_FUEL_TOOLS_HTTPMETHOD_HH_ | ||
|
||
#include <map> | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
|
||
#if defined(_WIN32) && defined(DELETE) | ||
#undef DELETE | ||
#endif | ||
|
||
namespace gz::fuel_tools | ||
{ | ||
/// \brief the types of HTTP methods | ||
enum class HttpMethod | ||
{ | ||
/// \brief Get method. | ||
GET, | ||
|
||
/// \brief Post method. | ||
POST, | ||
|
||
/// \brief Delete method. | ||
DELETE, | ||
|
||
/// \brief Put method. | ||
PUT, | ||
|
||
/// \brief Patch method. | ||
PATCH, | ||
|
||
/// \brief Post form method. | ||
POST_FORM, | ||
|
||
/// \brief Patch form method. | ||
PATCH_FORM | ||
}; | ||
} // namespace gz::fuel_tools | ||
|
||
#endif // GZ_FUEL_TOOLS_HTTPMETHOD_HH_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright (C) 2017 Open Source Robotics Foundation | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
#ifndef GZ_FUEL_TOOLS_RESULTTYPE_HH_ | ||
#define GZ_FUEL_TOOLS_RESULTTYPE_HH_ | ||
|
||
#include <memory> | ||
#include <string> | ||
|
||
#if defined(_WIN32) && defined(DELETE) | ||
#undef DELETE | ||
#endif | ||
|
||
namespace gz::fuel_tools | ||
{ | ||
/// Result type. | ||
enum class ResultType | ||
{ | ||
/// \brief Uninitialized type. | ||
UNKNOWN = 0, | ||
|
||
/// \brief Delete successful. | ||
DELETE, | ||
|
||
/// \brief Model not found. | ||
DELETE_NOT_FOUND, | ||
|
||
/// \brief Delete failed. Other errors. | ||
/// \sa ReadableResult | ||
DELETE_ERROR, | ||
|
||
/// \brief Fetch successful. | ||
FETCH, | ||
|
||
/// \brief Model already exists. | ||
FETCH_ALREADY_EXISTS, | ||
|
||
/// \brief Model not found. | ||
FETCH_NOT_FOUND, | ||
|
||
/// \brief Fetch failed. Other errors. | ||
/// \sa ReadableResult | ||
FETCH_ERROR, | ||
|
||
/// \brief Upload successful. | ||
UPLOAD, | ||
|
||
/// \brief Model already exists. | ||
UPLOAD_ALREADY_EXISTS, | ||
|
||
/// \brief Upload failed. Other errors. | ||
/// \sa ReadableResult | ||
UPLOAD_ERROR, | ||
|
||
/// \brief Patch failed. | ||
PATCH_ERROR, | ||
|
||
/// \brief Patch successful. | ||
PATCH, | ||
}; | ||
} // namespace gz::fuel_tools | ||
|
||
#endif // GZ_FUEL_TOOLS_RESULTTYPE_HH_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters