Interface WASAML2SPService

All Superinterfaces:
org.apache.syncope.common.rest.api.service.JAXRSService

@Path("wa/saml2sp") public interface WASAML2SPService extends org.apache.syncope.common.rest.api.service.JAXRSService
REST operations for WA to work with SAML2SP clients.
  • Field Summary

    Fields inherited from interface org.apache.syncope.common.rest.api.service.JAXRSService

    CRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_KEYWORD, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RECURSIVE, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    getSAML2SPKeystore(@NotNull String clientName)
     
    jakarta.ws.rs.core.Response
    getSAML2SPMetadata(@NotNull String clientName)
     
    void
    setSAML2SPKeystore(@NotNull String clientName, InputStream keystore)
     
    void
    setSAML2SPMetadata(@NotNull String clientName, InputStream metadata)
     
  • Method Details

    • getSAML2SPKeystore

      @GET @Path("{clientName}/keystore") jakarta.ws.rs.core.Response getSAML2SPKeystore(@NotNull @PathParam("clientName") @NotNull String clientName)
    • setSAML2SPKeystore

      @PUT @Path("{clientName}/keystore") void setSAML2SPKeystore(@NotNull @PathParam("clientName") @NotNull String clientName, InputStream keystore)
    • getSAML2SPMetadata

      @GET @Path("{clientName}/metadata") jakarta.ws.rs.core.Response getSAML2SPMetadata(@NotNull @PathParam("clientName") @NotNull String clientName)
    • setSAML2SPMetadata

      @PUT @Path("{clientName}/metadata") void setSAML2SPMetadata(@NotNull @PathParam("clientName") @NotNull String clientName, InputStream metadata)