@Path(value="saml2sp/identityProviders") public interface SAML2IdPService extends JAXRSService
PARAM_ANYTYPE_KIND, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_RESOURCE, PARAM_SIZE| Modifier and Type | Method and Description |
|---|---|
void |
delete(String key)
Deletes the SAML 2.0 Identity Provider with matching entityID.
|
Set<String> |
getActionsClasses()
Returns the list of available SAML2IdPActions implementations.
|
Set<String> |
getRequestedAuthnContextProviderClasses()
Returns the list of available RequestedAuthnContextProviders implementations.
|
javax.ws.rs.core.Response |
importFromMetadata(InputStream input)
Imports the SAML 2.0 Identity Provider definitions available in the provided XML metadata.
|
List<SAML2IdPTO> |
list()
Returns a list of all defined SAML 2.0 Identity Providers.
|
SAML2IdPTO |
read(String key)
Returns the SAML 2.0 Identity Provider with matching entityID, if available.
|
void |
update(SAML2IdPTO saml2IdpTO)
Updates the SAML 2.0 Identity Provider with matching entityID.
|
@GET @Path(value="actionsClasses") @Produces(value="application/json") Set<String> getActionsClasses()
@GET @Path(value="requestedAuthnContextProviders") @Produces(value="application/json") Set<String> getRequestedAuthnContextProviderClasses()
@GET
@Produces(value={"application/json","application/yaml","application/xml"})
List<SAML2IdPTO> list()
@GET
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
SAML2IdPTO read(@PathParam(value="key")
String key)
key - SAML 2.0 Identity Provider's entityID@POST
@Consumes(value="application/xml")
@Produces(value={"application/json","application/yaml","application/xml"})
javax.ws.rs.core.Response importFromMetadata(@NotNull
InputStream input)
input - XML metadata@PUT
@Path(value="{key}")
@Consumes(value={"application/json","application/yaml","application/xml"})
@Produces(value={"application/json","application/yaml","application/xml"})
void update(@NotNull
SAML2IdPTO saml2IdpTO)
saml2IdpTO - idp configuration to be stored@DELETE
@Path(value="{key}")
@Produces(value={"application/json","application/yaml","application/xml"})
void delete(@PathParam(value="key")
String key)
key - SAML 2.0 Identity Provider's entityIDCopyright © 2010–2019 The Apache Software Foundation. All rights reserved.