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


Java NoncollidingAttributeAdder类代码示例

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


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

示例1: getAttributeMerger

import org.jasig.services.persondir.support.merger.NoncollidingAttributeAdder; //导入依赖的package包/类
/**
 * Get attribute merger.
 * @return the attribute merger
 */
public IAttributeMerger getAttributeMerger() {
    final String name = this.name().toUpperCase();

    switch (name.toUpperCase()) {
        case "REPLACE":
            return new ReplacingAttributeAdder();
        case "ADD":
            return new NoncollidingAttributeAdder();
        case "MULTIVALUED":
            return new MultivaluedAttributeMerger();
        default:
            return null;
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:19,代码来源:AbstractPrincipalAttributesRepository.java

示例2: mapPrincipalRepository

import org.jasig.services.persondir.support.merger.NoncollidingAttributeAdder; //导入依赖的package包/类
@Override
public void mapPrincipalRepository(final PrincipalAttributesRepository pr, final ServiceData bean) {
    final RegisteredServiceAttributeReleasePolicyEditBean attrPolicyBean = bean.getAttrRelease();
    if (pr instanceof DefaultPrincipalAttributesRepository) {
        attrPolicyBean.setAttrOption(RegisteredServiceAttributeReleasePolicyEditBean.Types.DEFAULT.toString());
    } else if (pr instanceof AbstractPrincipalAttributesRepository) {
        attrPolicyBean.setAttrOption(RegisteredServiceAttributeReleasePolicyEditBean.Types.CACHED.toString());

        final AbstractPrincipalAttributesRepository cc = (AbstractPrincipalAttributesRepository) pr;

        attrPolicyBean.setCachedExpiration(cc.getExpiration());
        attrPolicyBean.setCachedTimeUnit(cc.getTimeUnit().name());

        final IAttributeMerger merger = cc.getMergingStrategy().getAttributeMerger();

        if (merger != null) {
            if (merger instanceof NoncollidingAttributeAdder) {
                attrPolicyBean.setMergingStrategy(RegisteredServiceAttributeReleasePolicyEditBean
                        .AttributeMergerTypes.ADD.toString());
            } else if (merger instanceof MultivaluedAttributeMerger) {
                attrPolicyBean.setMergingStrategy(RegisteredServiceAttributeReleasePolicyEditBean
                        .AttributeMergerTypes.MULTIVALUED.toString());
            } else if (merger instanceof ReplacingAttributeAdder) {
                attrPolicyBean.setMergingStrategy(RegisteredServiceAttributeReleasePolicyEditBean
                        .AttributeMergerTypes.REPLACE.toString());
            }
        }
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:30,代码来源:DefaultPrincipalAttributesRepositoryMapper.java

示例3: verifyMergingStrategyWithNoncollidingAttributeAdder

import org.jasig.services.persondir.support.merger.NoncollidingAttributeAdder; //导入依赖的package包/类
@Test
public void verifyMergingStrategyWithNoncollidingAttributeAdder() throws Exception {
    final CachingPrincipalAttributesRepository repository = new CachingPrincipalAttributesRepository(this.dao,
            TimeUnit.SECONDS, 5);
    repository.setMergingStrategy(new NoncollidingAttributeAdder());

    assertTrue(repository.getAttributes(this.principal).containsKey("mail"));
    assertEquals(repository.getAttributes(this.principal).get("mail").toString(), "[email protected]");
    ((Closeable) repository).close();
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:11,代码来源:CachingPrincipalAttributesRepositoryTests.java

示例4: getRegisteredService

import org.jasig.services.persondir.support.merger.NoncollidingAttributeAdder; //导入依赖的package包/类
public static AbstractRegisteredService getRegisteredService(final String id) {
    try  {
        final RegexRegisteredService s = new RegexRegisteredService();
        s.setServiceId(id);
        s.setEvaluationOrder(1);
        s.setName("Test registered service");
        s.setDescription("Registered service description");
        s.setProxyPolicy(new RegexMatchingRegisteredServiceProxyPolicy("^https?://.+"));
        s.setId(new SecureRandom().nextInt(Math.abs(s.hashCode())));
        s.setTheme("exampleTheme");
        s.setUsernameAttributeProvider(new PrincipalAttributeRegisteredServiceUsernameProvider("uid"));
        final DefaultRegisteredServiceAccessStrategy accessStrategy =
                new DefaultRegisteredServiceAccessStrategy(true, true);
        accessStrategy.setRequireAllAttributes(true);
        accessStrategy.setRequiredAttributes(getTestAttributes());
        s.setAccessStrategy(accessStrategy);
        s.setLogo(new URL("https://logo.example.org/logo.png"));
        s.setLogoutType(LogoutType.BACK_CHANNEL);
        s.setLogoutUrl(new URL("https://sys.example.org/logout.png"));
        s.setProxyPolicy(new RegexMatchingRegisteredServiceProxyPolicy("^http.+"));

        s.setPublicKey(new RegisteredServicePublicKeyImpl("classpath:pub.key", "RSA"));

        final ReturnAllowedAttributeReleasePolicy policy = new ReturnAllowedAttributeReleasePolicy();
        policy.setAuthorizedToReleaseCredentialPassword(true);
        policy.setAuthorizedToReleaseProxyGrantingTicket(true);

        final CachingPrincipalAttributesRepository repo =
                new CachingPrincipalAttributesRepository(new StubPersonAttributeDao(), 10);
        repo.setMergingStrategy(new NoncollidingAttributeAdder());
        policy.setPrincipalAttributesRepository(repo);
        policy.setAttributeFilter(new RegisteredServiceRegexAttributeFilter("https://.+"));
        policy.setAllowedAttributes(new ArrayList(getTestAttributes().keySet()));
        s.setAttributeReleasePolicy(policy);

        return s;
    } catch (final Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:41,代码来源:TestUtils.java


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