Tabnine Logo
SPSSODescriptor.getSingleLogoutServices
Code IndexAdd Tabnine to your IDE (free)

How to use
getSingleLogoutServices
method
in
org.opensaml.saml.saml2.metadata.SPSSODescriptor

Best Java code snippets using org.opensaml.saml.saml2.metadata.SPSSODescriptor.getSingleLogoutServices (Showing top 9 results out of 315)

origin: line/armeria

spSsoDescriptor.getNameIDFormats().addAll(buildNameIdFormatElements(nameIdFormats));
final List<SingleLogoutService> sloList = spSsoDescriptor.getSingleLogoutServices();
singleLogoutEndpoints.forEach(endpoint -> {
  final SingleLogoutService slo = build(SingleLogoutService.DEFAULT_ELEMENT_NAME);
origin: line/armeria

assertThat(kd.get(1).getUse().name()).isEqualToIgnoringCase("encryption");
final List<SingleLogoutService> slo = sp.getSingleLogoutServices();
assertThat(slo.get(0).getLocation())
    .isEqualTo("http://" + spHostname + ':' + rule.httpPort() + "/saml/slo/post");
origin: com.linecorp.armeria/armeria-saml

spSsoDescriptor.getNameIDFormats().addAll(buildNameIdFormatElements(nameIdFormats));
final List<SingleLogoutService> sloList = spSsoDescriptor.getSingleLogoutServices();
singleLogoutEndpoints.forEach(endpoint -> {
  final SingleLogoutService slo = build(SingleLogoutService.DEFAULT_ELEMENT_NAME);
origin: org.pac4j/pac4j-saml

/**
 * Validates the SAML logout response.
 *
 * @param logoutResponse the logout response
 * @param context the context
 * @param engine the signature engine
 */
protected void validateLogoutResponse(final LogoutResponse logoutResponse, final SAML2MessageContext context,
                      final SignatureTrustEngine engine) {
  validateSuccess(logoutResponse.getStatus());
  validateSignatureIfItExists(logoutResponse.getSignature(), context, engine);
  validateIssueInstant(logoutResponse.getIssueInstant());
  validateIssuerIfItExists(logoutResponse.getIssuer(), context);
  verifyEndpoint(context.getSPSSODescriptor().getSingleLogoutServices().get(0), logoutResponse.getDestination());
}
origin: org.pac4j/pac4j-saml

spDescriptor.getAssertionConsumerServices()
  .add(getAssertionConsumerService(SAMLConstants.SAML2_POST_BINDING_URI, index++, this.defaultACSIndex == index));
spDescriptor.getSingleLogoutServices().add(getSingleLogoutService(SAMLConstants.SAML2_POST_BINDING_URI));
spDescriptor.getSingleLogoutServices().add(getSingleLogoutService(SAMLConstants.SAML2_REDIRECT_BINDING_URI));
spDescriptor.getSingleLogoutServices().add(getSingleLogoutService(SAMLConstants.SAML2_SOAP11_BINDING_URI));
origin: codice/ddf

addSingleLogoutLocation(singleLogOutLocation, spSsoDescriptor.getSingleLogoutServices());
origin: spring-projects/spring-security-saml

descriptor.getSingleLogoutServices().add(getSingleLogoutService(ep));
origin: org.apache.syncope.ext.saml2sp/syncope-ext-saml2sp-logic

singleLogoutService.setLocation(sloUrl);
singleLogoutService.setResponseLocation(sloUrl);
spSSODescriptor.getSingleLogoutServices().add(singleLogoutService);
origin: spring-projects/spring-security-saml

provider.setNameIds(getNameIDs(desc.getNameIDFormats()));
provider.setArtifactResolutionService(getEndpoints(desc.getArtifactResolutionServices()));
provider.setSingleLogoutService(getEndpoints(desc.getSingleLogoutServices()));
provider.setManageNameIDService(getEndpoints(desc.getManageNameIDServices()));
provider.setAuthnRequestsSigned(desc.isAuthnRequestsSigned());
org.opensaml.saml.saml2.metadataSPSSODescriptorgetSingleLogoutServices

Popular methods of SPSSODescriptor

  • getAssertionConsumerServices
    Gets an list of assertion consumer service Endpoints for this service.
  • getKeyDescriptors
  • getNameIDFormats
  • setAuthnRequestsSigned
    Sets whether this service signs AuthN requests.
  • setWantAssertionsSigned
    Sets whether this service wants assertions signed.
  • addSupportedProtocol
  • getAttributeConsumingServices
    Gets an list of attribute consuming service descriptors for this service.
  • isAuthnRequestsSigned
    Gets whether this service signs AuthN requests.
  • getWantAssertionsSigned
    Gets whether this service wants assertions signed.
  • getExtensions
  • getCacheDuration
  • getDefaultAttributeConsumingService
    Gets the default attribute consuming service. The selection algorithm used is: 1. Select the first s
  • getCacheDuration,
  • getDefaultAttributeConsumingService,
  • getEndpoints,
  • getOrganization,
  • getSupportedProtocols,
  • getValidUntil,
  • getArtifactResolutionServices,
  • getContactPersons,
  • getDefaultAssertionConsumerService

Popular in Java

  • Making http post requests using okhttp
  • getApplicationContext (Context)
  • setRequestProperty (URLConnection)
  • getExternalFilesDir (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • ImageIO (javax.imageio)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now