Class AuthenticationManagementResource


  • @Path("/")
    @Consumes("application/json")
    @Produces("application/json")
    public class AuthenticationManagementResource
    extends RoleMappingResource
    • Constructor Detail

      • AuthenticationManagementResource

        public AuthenticationManagementResource​(org.keycloak.models.RealmModel realm,
                                                org.keycloak.services.resources.admin.permissions.AdminPermissionEvaluator auth)
    • Method Detail

      • listIdentityProviders

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

        @GET
        @Path("/{type}/{id}")
        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)