Interface IdentityProvidersResource


public interface IdentityProvidersResource
Author:
pedroigor
  • Method Details

    • get

      @Path("instances/{alias}") IdentityProviderResource get(@PathParam("alias") String alias)
    • findAll

      @GET @Path("instances") @Produces("application/json") List<IdentityProviderRepresentation> findAll()
    • find

      @GET @Path("instances") @Produces("application/json") List<IdentityProviderRepresentation> find(@QueryParam("search") String search, @QueryParam("briefRepresentation") Boolean briefRepresentation, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults)
    • create

      @POST @Path("instances") @Consumes("application/json") jakarta.ws.rs.core.Response create(IdentityProviderRepresentation identityProvider)
    • getIdentityProviders

      @GET @Path("/providers/{provider_id}") @Produces("application/json") jakarta.ws.rs.core.Response getIdentityProviders(@PathParam("provider_id") String providerId)
    • importFrom

      @POST @Path("import-config") @Consumes("multipart/form-data") @Produces("application/json") Map<String,String> importFrom(Object data)
    • importFrom

      @POST @Path("import-config") @Consumes("application/json") @Produces("application/json") Map<String,String> importFrom(Map<String,Object> data)