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


Java NameIdentifier.setNameIdentifier方法代码示例

本文整理汇总了Java中org.opensaml.saml1.core.NameIdentifier.setNameIdentifier方法的典型用法代码示例。如果您正苦于以下问题:Java NameIdentifier.setNameIdentifier方法的具体用法?Java NameIdentifier.setNameIdentifier怎么用?Java NameIdentifier.setNameIdentifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.opensaml.saml1.core.NameIdentifier的用法示例。


在下文中一共展示了NameIdentifier.setNameIdentifier方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: newSubject

import org.opensaml.saml1.core.NameIdentifier; //导入方法依赖的package包/类
private Subject newSubject(final String identifier) {
    final SubjectConfirmation confirmation = newSamlObject(SubjectConfirmation.class);
    final ConfirmationMethod method = newSamlObject(ConfirmationMethod.class);
    method.setConfirmationMethod(CONFIRMATION_METHOD);
    confirmation.getConfirmationMethods().add(method);
    final NameIdentifier nameIdentifier = newSamlObject(NameIdentifier.class);
    nameIdentifier.setNameIdentifier(identifier);
    final Subject subject = newSamlObject(Subject.class);
    subject.setNameIdentifier(nameIdentifier);
    subject.setSubjectConfirmation(confirmation);
    return subject;
}
 
开发者ID:luotuo,项目名称:cas4.0.x-server-wechat,代码行数:13,代码来源:Saml10SuccessResponseView.java

示例2: testSingleElementOptionalAttributesMarshall

import org.opensaml.saml1.core.NameIdentifier; //导入方法依赖的package包/类
/** {@inheritDoc} */

    public void testSingleElementOptionalAttributesMarshall() {
        NameIdentifier nameIdentifier = (NameIdentifier) buildXMLObject(qname);
        
        nameIdentifier.setFormat(expectedFormat);
        nameIdentifier.setNameIdentifier(expectedNameIdentifier);
        nameIdentifier.setNameQualifier(expectedNameQualifier);
        
        assertEquals(expectedOptionalAttributesDOM, nameIdentifier);
    }
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:12,代码来源:NameIdentifierTest.java

示例3: processElementContent

import org.opensaml.saml1.core.NameIdentifier; //导入方法依赖的package包/类
/** {@inheritDoc} */
protected void processElementContent(XMLObject samlObject, String elementContent) {
    NameIdentifier nameIdentifier = (NameIdentifier) samlObject;
    nameIdentifier.setNameIdentifier(elementContent);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:6,代码来源:NameIdentifierUnmarshaller.java


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