From 3df8bd2fdc77d37863838a7632b16337218266ca Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 27 Jun 2018 20:02:16 +0200 Subject: [PATCH] #156 --- .../Client/IFluentMockServerAdmin.cs | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/WireMock.Net/Client/IFluentMockServerAdmin.cs b/src/WireMock.Net/Client/IFluentMockServerAdmin.cs index 4d1791f7..c1539ea9 100644 --- a/src/WireMock.Net/Client/IFluentMockServerAdmin.cs +++ b/src/WireMock.Net/Client/IFluentMockServerAdmin.cs @@ -33,7 +33,7 @@ namespace WireMock.Client /// SettingsModel [Put("__admin/settings")] [Header("Content-Type", "application/json")] - Task PutSettingsAsync([Body] SettingsModel settings); + Task PutSettingsAsync([Body] SettingsModel settings); /// /// Update the settings @@ -41,7 +41,7 @@ namespace WireMock.Client /// SettingsModel [Post("__admin/settings")] [Header("Content-Type", "application/json")] - Task PostSettingsAsync([Body] SettingsModel settings); + Task PostSettingsAsync([Body] SettingsModel settings); /// /// Get the mappings. @@ -56,19 +56,19 @@ namespace WireMock.Client /// MappingModel [Post("__admin/mappings")] [Header("Content-Type", "application/json")] - Task PostMappingAsync([Body] MappingModel mapping); + Task PostMappingAsync([Body] MappingModel mapping); /// /// Delete all mappings. /// [Delete("__admin/mappings")] - Task DeleteMappingsAsync(); + Task DeleteMappingsAsync(); /// /// Delete (reset) all mappings. /// [Post("__admin/mappings/reset")] - Task ResetMappingsAsync(); + Task ResetMappingsAsync(); /// /// Get a mapping based on the guid @@ -84,20 +84,20 @@ namespace WireMock.Client /// The Guid /// MappingModel [Put("__admin/mappings/{guid}")] - Task PutMappingAsync([Path] Guid guid, [Body] MappingModel mapping); + Task PutMappingAsync([Path] Guid guid, [Body] MappingModel mapping); /// /// Delete a mapping based on the guid /// /// The Guid [Delete("__admin/mappings/{guid}")] - Task DeleteMappingAsync([Path] Guid guid); + Task DeleteMappingAsync([Path] Guid guid); /// /// Save the mappings /// [Post("__admin/mappings/save")] - Task SaveMappingAsync(); + Task SaveMappingAsync(); /// /// Get the requests. @@ -110,13 +110,13 @@ namespace WireMock.Client /// Delete all requests. /// [Delete("__admin/requests")] - Task DeleteRequestsAsync(); + Task DeleteRequestsAsync(); /// /// Delete (reset) all requests. /// [Post("__admin/requests/reset")] - Task ResetRequestsAsync(); + Task ResetRequestsAsync(); /// /// Get a request based on the guid @@ -131,7 +131,7 @@ namespace WireMock.Client /// /// The Guid [Delete("__admin/requests/{guid}")] - Task DeleteRequestAsync([Path] Guid guid); + Task DeleteRequestAsync([Path] Guid guid); /// /// Find a request based on the criteria @@ -151,12 +151,12 @@ namespace WireMock.Client /// Delete (reset) all scenarios /// [Delete("__admin/scenarios")] - Task DeleteScenariosAsync(); + Task DeleteScenariosAsync(); /// /// Delete (reset) all scenarios /// [Post("__admin/scenarios")] - Task ResetScenariosAsync(); + Task ResetScenariosAsync(); } } \ No newline at end of file