本文整理汇总了Java中org.jasig.services.persondir.support.merger.MultivaluedAttributeMerger类的典型用法代码示例。如果您正苦于以下问题:Java MultivaluedAttributeMerger类的具体用法?Java MultivaluedAttributeMerger怎么用?Java MultivaluedAttributeMerger使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
MultivaluedAttributeMerger类属于org.jasig.services.persondir.support.merger包,在下文中一共展示了MultivaluedAttributeMerger类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAttributeMerger
import org.jasig.services.persondir.support.merger.MultivaluedAttributeMerger; //导入依赖的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.MultivaluedAttributeMerger; //导入依赖的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: verifyMergingStrategyWithMultivaluedAttributeMerger
import org.jasig.services.persondir.support.merger.MultivaluedAttributeMerger; //导入依赖的package包/类
@Test
public void verifyMergingStrategyWithMultivaluedAttributeMerger() throws Exception {
final CachingPrincipalAttributesRepository repository = new CachingPrincipalAttributesRepository(this.dao,
TimeUnit.SECONDS, 5);
repository.setMergingStrategy(new MultivaluedAttributeMerger());
assertTrue(repository.getAttributes(this.principal).get("mail") instanceof List);
final List<?> values = (List) repository.getAttributes(this.principal).get("mail");
assertTrue(values.contains("[email protected]"));
assertTrue(values.contains("[email protected]"));
((Closeable) repository).close();
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:14,代码来源:CachingPrincipalAttributesRepositoryTests.java