Java Code Examples for org.opensaml.common.xml.SAMLConstants#SAML2_REDIRECT_BINDING_URI
The following examples show how to use
org.opensaml.common.xml.SAMLConstants#SAML2_REDIRECT_BINDING_URI .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MetadataGenerator.java From MaxKey with Apache License 2.0 | 5 votes |
public SingleLogoutService getSingleLogoutService(String location,String binding){ SingleLogoutService singleLogoutService=(SingleLogoutService) buildXMLObject(SingleLogoutService.DEFAULT_ELEMENT_NAME); if(binding==null){ binding=SAMLConstants.SAML2_REDIRECT_BINDING_URI; } singleLogoutService.setBinding(binding); singleLogoutService.setLocation(location); return singleLogoutService; }
Example 2
Source File: HTTPRedirectDeflateEncoder.java From lams with GNU General Public License v2.0 | 4 votes |
/** {@inheritDoc} */ public String getBindingURI() { return SAMLConstants.SAML2_REDIRECT_BINDING_URI; }
Example 3
Source File: HTTPRedirectDeflateDecoder.java From lams with GNU General Public License v2.0 | 4 votes |
/** {@inheritDoc} */ public String getBindingURI() { return SAMLConstants.SAML2_REDIRECT_BINDING_URI; }