org.springframework.security.saml.websso.WebSSOProfileImpl.<init>()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(139)

本文整理了Java中org.springframework.security.saml.websso.WebSSOProfileImpl.<init>()方法的一些代码示例,展示了WebSSOProfileImpl.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebSSOProfileImpl.<init>()方法的具体详情如下:
包路径:org.springframework.security.saml.websso.WebSSOProfileImpl
类名称:WebSSOProfileImpl
方法名:<init>

WebSSOProfileImpl.<init>介绍

暂无

代码示例

代码示例来源:origin: metatron-app/metatron-discovery

@Bean
public WebSSOProfile webSSOprofile() {
 return new WebSSOProfileImpl();
}

代码示例来源:origin: com.netflix.genie/genie-web

/**
 * SAML 2.0 Web SSO profile.
 *
 * @return The web profile
 * @see WebSSOProfile
 * @see WebSSOProfileImpl
 */
@Bean
public WebSSOProfile webSSOprofile() {
  return new WebSSOProfileImpl();
}

代码示例来源:origin: ulisesbocchio/spring-boot-security-saml-samples

@Bean
public WebSSOProfile webSSOprofile() {
  return new WebSSOProfileImpl();
}

代码示例来源:origin: vdenotaris/spring-boot-security-saml-sample

@Bean
public WebSSOProfile webSSOprofile() {
  return new WebSSOProfileImpl();
}

代码示例来源:origin: ulisesbocchio/spring-boot-security-saml

@VisibleForTesting
  protected WebSSOProfile createDefaultWebSSOProfile() {
    return new WebSSOProfileImpl();
  }
}

代码示例来源:origin: spring-projects/spring-security-saml-dsl

private WebSSOProfile webSSOProfile() {
  WebSSOProfileImpl webSSOProfile = new WebSSOProfileImpl(samlProcessor, cachingMetadataManager);
  webSSOProfile.setResponseSkew(serviceProvider.responseSkew);
  return webSSOProfile;
}

代码示例来源:origin: OpenConext/Mujina

@Bean
@Autowired
public WebSSOProfile webSSOprofile(SAMLProcessor samlProcessor) {
 WebSSOProfileImpl webSSOProfile = new WebSSOProfileImpl();
 webSSOProfile.setProcessor(samlProcessor);
 return webSSOProfile;
}

相关文章

WebSSOProfileImpl类方法