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


Java AttributeService类代码示例

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


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

示例1: processChildElement

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentElement, XMLObject childElement) throws UnmarshallingException {
    AttributeAuthorityDescriptor descriptor = (AttributeAuthorityDescriptor) parentElement;

    if (childElement instanceof AttributeService) {
        descriptor.getAttributeServices().add((AttributeService) childElement);
    } else if (childElement instanceof AssertionIDRequestService) {
        descriptor.getAssertionIDRequestServices().add((AssertionIDRequestService) childElement);
    } else if (childElement instanceof NameIDFormat) {
        descriptor.getNameIDFormats().add((NameIDFormat) childElement);
    } else if (childElement instanceof AttributeProfile) {
        descriptor.getAttributeProfiles().add((AttributeProfile) childElement);
    } else if (childElement instanceof Attribute) {
        descriptor.getAttributes().add((Attribute) childElement);
    } else {
        super.processChildElement(parentElement, childElement);
    }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:19,代码来源:AttributeAuthorityDescriptorUnmarshaller.java

示例2: AttributeAuthorityDescriptorImpl

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/**
 * Constructor.
 * 
 * @param namespaceURI the namespace the element is in
 * @param elementLocalName the local name of the XML element this Object represents
 * @param namespacePrefix the prefix for the given namespace
 */
protected AttributeAuthorityDescriptorImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
    super(namespaceURI, elementLocalName, namespacePrefix);
    attributeServices = new XMLObjectChildrenList<AttributeService>(this);
    assertionIDRequestServices = new XMLObjectChildrenList<AssertionIDRequestService>(this);
    attributeProfiles = new XMLObjectChildrenList<AttributeProfile>(this);
    nameFormats = new XMLObjectChildrenList<NameIDFormat>(this);
    attributes = new XMLObjectChildrenList<Attribute>(this);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:16,代码来源:AttributeAuthorityDescriptorImpl.java

示例3: getEndpoints

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public List<Endpoint> getEndpoints(QName type) {
    if(type.equals(AttributeService.DEFAULT_ELEMENT_NAME)){
        return Collections.unmodifiableList(new ArrayList<Endpoint>(attributeServices));
    }else if(type.equals(AssertionIDRequestService.DEFAULT_ELEMENT_NAME)){
        return Collections.unmodifiableList(new ArrayList<Endpoint>(assertionIDRequestServices));
    }
    
    return null;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:11,代码来源:AttributeAuthorityDescriptorImpl.java

示例4: getAttributeQueryServiceLocation

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
public String getAttributeQueryServiceLocation(String binding) throws IllegalArgumentException {
	AttributeAuthorityDescriptor descriptor = entityDescriptor.getAttributeAuthorityDescriptor(SAMLConstants.SAML20P_NS);
	if (descriptor == null) throw new IllegalArgumentException("Metadata does not contain a AttributeAuthorityDescriptor");
	for (AttributeService service : descriptor.getAttributeServices()) {
		if (binding.equals(service.getBinding())) {
			return service.getLocation();
		}
	}
	throw new IllegalArgumentException("Binding " + binding + " not found in AttributeServices");
}
 
开发者ID:amagdenko,项目名称:oiosaml.java,代码行数:11,代码来源:IdpMetadata.java

示例5: populateRequiredData

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
protected void populateRequiredData() {
    super.populateRequiredData();
    AttributeAuthorityDescriptor attributeAuthorityDescriptor = (AttributeAuthorityDescriptor) target;
    AttributeService attributeService = (AttributeService) buildXMLObject(new QName(SAMLConstants.SAML20MD_NS,
            AttributeService.DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML20MD_PREFIX));
    attributeAuthorityDescriptor.getAttributeServices().add(attributeService);
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:9,代码来源:AttributeAuthorityDescriptorSchemaTest.java

示例6: testSingleElementUnmarshall

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public void testSingleElementUnmarshall() {
    AttributeService service = (AttributeService) unmarshallElement(singleElementFile);
    
    assertEquals("Binding URI was not expected value", expectedBinding, service.getBinding());
    assertEquals("Location was not expected value", expectedLocation, service.getLocation());
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:8,代码来源:AttributeServiceTest.java

示例7: testSingleElementOptionalAttributesUnmarshall

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public void testSingleElementOptionalAttributesUnmarshall() {
    AttributeService service = (AttributeService) unmarshallElement(singleElementOptionalAttributesFile);
    
    assertEquals("Binding URI was not expected value", expectedBinding, service.getBinding());
    assertEquals("Location was not expected value", expectedLocation, service.getLocation());
    assertEquals("ResponseLocation was not expected value", expectedResponseLocation, service.getResponseLocation());;
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:9,代码来源:AttributeServiceTest.java

示例8: testSingleElementMarshall

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public void testSingleElementMarshall() {
    QName qname = new QName(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML20MD_PREFIX);
    AttributeService service = (AttributeService) buildXMLObject(qname);
    
    service.setBinding(expectedBinding);
    service.setLocation(expectedLocation);

    assertEquals(expectedDOM, service);
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:11,代码来源:AttributeServiceTest.java

示例9: testSingleElementOptionalAttributesMarshall

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public void testSingleElementOptionalAttributesMarshall() {
    QName qname = new QName(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML20MD_PREFIX);
    AttributeService service = (AttributeService) buildXMLObject(qname);
    
    service.setBinding(expectedBinding);
    service.setLocation(expectedLocation);
    service.setResponseLocation(expectedResponseLocation);

    assertEquals(expectedOptionalAttributesDOM, service);
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:12,代码来源:AttributeServiceTest.java

示例10: buildObject

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public AttributeService buildObject() {
    return buildObject(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML20MD_PREFIX);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:5,代码来源:AttributeServiceBuilder.java

示例11: getAttributeServices

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** {@inheritDoc} */
public List<AttributeService> getAttributeServices() {
    return attributeServices;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:5,代码来源:AttributeAuthorityDescriptorImpl.java

示例12: AttributeServiceMarshaller

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/**
 * Constructor
 */
public AttributeServiceMarshaller() {
    super(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME);
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:7,代码来源:AttributeServiceMarshaller.java

示例13: AttributeServiceUnmarshaller

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/**
 * Constructor
 */
public AttributeServiceUnmarshaller() {
    super(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME);
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:7,代码来源:AttributeServiceUnmarshaller.java

示例14: AttributeServiceSchemaTest

import org.opensaml.saml2.metadata.AttributeService; //导入依赖的package包/类
/** Constructor */
public AttributeServiceSchemaTest() {
    targetQName = new QName(SAMLConstants.SAML20MD_NS, AttributeService.DEFAULT_ELEMENT_LOCAL_NAME, SAMLConstants.SAML20MD_PREFIX);
    validator = new AttributeServiceSchemaValidator();
}
 
开发者ID:apigee,项目名称:java-opensaml2,代码行数:6,代码来源:AttributeServiceSchemaTest.java


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