当前位置: 首页>>代码示例>>Java>>正文


Java GoogleAccountsService类代码示例

本文整理汇总了Java中org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService的典型用法代码示例。如果您正苦于以下问题:Java GoogleAccountsService类的具体用法?Java GoogleAccountsService怎么用?Java GoogleAccountsService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


GoogleAccountsService类属于org.jasig.cas.support.saml.authentication.principal包,在下文中一共展示了GoogleAccountsService类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createService

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Override
protected GoogleAccountsService createService(final Kryo kryo, final Input input, final String id,
        final String originalUrl, final String artifactId) {

    final String requestId = kryo.readObject(input, String.class);
    final String relayState = kryo.readObject(input, String.class);
    try {
        return (GoogleAccountsService) CONSTRUCTOR.newInstance(
                id,
                originalUrl,
                artifactId,
                relayState,
                requestId,
                privateKey,
                publicKey,
                alternateUsername);
    } catch (final Exception e) {
        throw new IllegalStateException("Error creating SamlService", e);
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:21,代码来源:GoogleAccountsServiceSerializer.java

示例2: verifyAuthnRequest

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Test
public void verifyAuthnRequest() throws Exception {
    final MockHttpServletRequest request = new MockHttpServletRequest();
    final String samlRequest = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
            + "<samlp:AuthnRequest xmlns:samlp=\"urn:oasis:names:tc:SAML:2.0:protocol\" "
            + "ID=\"5545454455\" Version=\"2.0\" IssueInstant=\"Value\" "
            + "ProtocolBinding=\"urn:oasis:names.tc:SAML:2.0:bindings:HTTP-Redirect\" "
            + "ProviderName=\"https://localhost:8443/myRutgers\" AssertionConsumerServiceURL=\"https://localhost:8443/myRutgers\"/>";
    request.setParameter(SamlProtocolConstants.PARAMETER_SAML_REQUEST, encodeMessage(samlRequest));

    this.extractor.setSkewAllowance(200);

    final GoogleAccountsService service = (GoogleAccountsService) this.extractor.extractService(request);
    service.setPrincipal(TestUtils.getPrincipal());
    assertNotNull(service);
    final Response response = service.getResponse("SAMPLE_TICKET");
    assertNotNull(response);
    assertEquals(service.getSkewAllowance(), 200);
}
 
开发者ID:xuchengdong,项目名称:cas4.1.9,代码行数:20,代码来源:GoogleAccountsArgumentExtractorTests.java

示例3: createService

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
protected GoogleAccountsService createService(
        final ByteBuffer buffer,
        final String id,
        final String originalUrl,
        final String artifactId) {

    final String requestId = kryo.readObject(buffer, String.class);
    final String relayState = kryo.readObject(buffer, String.class);
    try {
        final GoogleAccountsService service = (GoogleAccountsService) CONSTRUCTOR.newInstance(
                id,
                originalUrl,
                artifactId,
                relayState,
                requestId,
                privateKey,
                publicKey,
                alternateUsername);
        return service;
    } catch (final Exception e) {
        throw new IllegalStateException("Error creating SamlService", e);
    }
}
 
开发者ID:kevin3061,项目名称:cas-4.0.1,代码行数:24,代码来源:GoogleAccountsServiceSerializer.java

示例4: extractServiceInternal

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Override
public WebApplicationService extractServiceInternal(final HttpServletRequest request) {
    final GoogleAccountsService service = GoogleAccountsService.createServiceFrom(request,
            this.privateKey, this.publicKey);
    if (service != null) {
        service.setSkewAllowance(this.skewAllowance);
    }
    return service;
}
 
开发者ID:xuchengdong,项目名称:cas4.1.9,代码行数:10,代码来源:GoogleAccountsArgumentExtractor.java

示例5: write

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Override
public void write(final Kryo kryo, final Output output, final GoogleAccountsService service) {
    super.write(kryo, output, service);
    kryo.writeObject(output, fieldHelper.getFieldValue(service, "requestId"));
    kryo.writeObject(output, fieldHelper.getFieldValue(service, "relayState"));
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:7,代码来源:GoogleAccountsServiceSerializer.java

示例6: extractServiceInternal

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Override
public WebApplicationService extractServiceInternal(final HttpServletRequest request) {
    return GoogleAccountsService.createServiceFrom(request,
            this.privateKey, this.publicKey, this.servicesManager);
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:6,代码来源:GoogleAccountsArgumentExtractor.java

示例7: extractServiceInternal

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
@Override
public WebApplicationService extractServiceInternal(final HttpServletRequest request) {
    return GoogleAccountsService.createServiceFrom(request,
            this.privateKey, this.publicKey, this.alternateUsername);
}
 
开发者ID:luotuo,项目名称:cas4.0.x-server-wechat,代码行数:6,代码来源:GoogleAccountsArgumentExtractor.java

示例8: write

import org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService; //导入依赖的package包/类
public void write(final ByteBuffer buffer, final GoogleAccountsService service) {
    super.write(buffer, service);
    kryo.writeObject(buffer, fieldHelper.getFieldValue(service, "requestId"));
    kryo.writeObject(buffer, fieldHelper.getFieldValue(service, "relayState"));
}
 
开发者ID:kevin3061,项目名称:cas-4.0.1,代码行数:6,代码来源:GoogleAccountsServiceSerializer.java


注:本文中的org.jasig.cas.support.saml.authentication.principal.GoogleAccountsService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。