use of org.opensaml.saml.saml2.metadata.SingleSignOnService in project datarouter by hotpads.
the class SamlTool method buildIdpEndpoint.
private static Endpoint buildIdpEndpoint(String identityProviderSingleSignOnServiceUrl) {
SingleSignOnService endpoint = build(SingleSignOnService.DEFAULT_ELEMENT_NAME);
endpoint.setBinding(SAMLConstants.SAML2_REDIRECT_BINDING_URI);
endpoint.setLocation(identityProviderSingleSignOnServiceUrl);
return endpoint;
}
Aggregations