Class AuthenticationManagementResource

    • Method Detail

      • listIdentityProviders

        @GET
        @Path("/flows")
        @Consumes("application/json")
        @Produces("application/json")
        public final List<Authentication> listIdentityProviders()
      • listUsed

        @GET
        @Path("/{type}/{id}")
        @Consumes("application/json")
        @Produces("application/json")
        public final List<String> listUsed​(@PathParam("id")
                                           String id,
                                           @PathParam("type")
                                           String type,
                                           @QueryParam("first") @DefaultValue("0")
                                           long first,
                                           @QueryParam("max") @DefaultValue("10")
                                           long max,
                                           @QueryParam("search") @DefaultValue("")
                                           String search)