Package se.litsec.eidas.opensaml.ext
Interface RequestedAttributes
-
- All Superinterfaces:
SAMLObject
,XMLObject
- All Known Implementing Classes:
RequestedAttributesImpl
public interface RequestedAttributes extends SAMLObject
The eIDAS<eidas:RequestedAttributes>
element.<?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns="http://eidas.europa.eu/saml-extensions" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://eidas.europa.eu/saml-extensions" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1"> <xs:element name="RequestedAttributes" type="eidas:RequestedAttributesType" /> <xs:complexType name="RequestedAttributesType"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="unbounded" ref="eidas:RequestedAttribute"/> </xs:sequence> </xs:complexType> </xsd:schema>
- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.static QName
DEFAULT_ELEMENT_NAME
Default element name.static String
TYPE_LOCAL_NAME
Local name of the XSI type.static QName
TYPE_NAME
QName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<RequestedAttribute>
getRequestedAttributes()
Returns a reference to the list of the requested attributes.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
-
Method Detail
-
getRequestedAttributes
List<RequestedAttribute> getRequestedAttributes()
Returns a reference to the list of the requested attributes.- Returns:
- an attribute list
-
-