本文整理汇总了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;
}
示例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);
}
示例3: processElementContent
import org.opensaml.saml1.core.NameIdentifier; //导入方法依赖的package包/类
/** {@inheritDoc} */
protected void processElementContent(XMLObject samlObject, String elementContent) {
NameIdentifier nameIdentifier = (NameIdentifier) samlObject;
nameIdentifier.setNameIdentifier(elementContent);
}