From 220852b83fbbed72d88d8e2d009520d886bdfd04 Mon Sep 17 00:00:00 2001 From: Maxime Besson Date: Wed, 17 Jun 2020 20:55:32 +0200 Subject: [PATCH] Manager API: fix doc --- doc/pages/manager-api/index.html | 18 +++++++----------- doc/sources/manager-api/openapi-spec.yaml | 2 +- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/doc/pages/manager-api/index.html b/doc/pages/manager-api/index.html index 9fbae8db7..06e984f32 100644 --- a/doc/pages/manager-api/index.html +++ b/doc/pages/manager-api/index.html @@ -2283,7 +2283,7 @@ public class CasappApiExample { CasappApi apiInstance = new CasappApi(); String serviceUrl = serviceUrl_example; // String | Service URL to search try { - array[CasApp] result = apiInstance.findCasAppsByServiceUrl(serviceUrl); + CasApp result = apiInstance.findCasAppsByServiceUrl(serviceUrl); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CasappApi#findCasAppsByServiceUrl"); @@ -2302,7 +2302,7 @@ public class CasappApiExample { CasappApi apiInstance = new CasappApi(); String serviceUrl = serviceUrl_example; // String | Service URL to search try { - array[CasApp] result = apiInstance.findCasAppsByServiceUrl(serviceUrl); + CasApp result = apiInstance.findCasAppsByServiceUrl(serviceUrl); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling CasappApi#findCasAppsByServiceUrl"); @@ -2322,7 +2322,7 @@ CasappApi *apiInstance = [[CasappApi alloc] init]; // Finds CAS applications by Service URL [apiInstance findCasAppsByServiceUrlWith:serviceUrl - completionHandler: ^(array[CasApp] output, NSError* error) { + completionHandler: ^(CasApp output, NSError* error) { if (output) { NSLog(@"%@", output); } @@ -2373,7 +2373,7 @@ namespace Example try { // Finds CAS applications by Service URL - array[CasApp] result = apiInstance.findCasAppsByServiceUrl(serviceUrl); + CasApp result = apiInstance.findCasAppsByServiceUrl(serviceUrl); Debug.WriteLine(result); } catch (Exception e) @@ -2476,7 +2476,7 @@ except ApiException as e:

Responses

-

Status: 200 - Return a list of CAS Providers

+

Status: 200 - Return a CAS Provider