Package com.sun.identity.saml2.protocol
Interface AttributeQuery
-
- All Superinterfaces:
RequestAbstract
,SubjectQueryAbstract
,XmlSerializable
@SupportedAll public interface AttributeQuery extends SubjectQueryAbstract
This class represents the AttributeQueryType complex type.The following schema fragment specifies the expected content contained within this java content object.
<complexType name="AttributeQueryType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:2.0:protocol}SubjectQueryAbstractType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:assertion}Attribute" minOccurs="0" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Attribute>
getAttributes()
ReturnsAttribute
objects.void
setAttributes(List<Attribute> attributes)
Sets theAttribute
objects.-
Methods inherited from interface com.sun.identity.saml2.protocol.RequestAbstract
getConsent, getDestination, getExtensions, getID, getIssueInstant, getIssuer, getSignature, getVersion, isMutable, isSignatureValid, isSigned, makeImmutable, setConsent, setDestination, setExtensions, setID, setIssueInstant, setIssuer, setVersion, sign
-
Methods inherited from interface com.sun.identity.saml2.protocol.SubjectQueryAbstract
getSubject, setSubject
-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment, toXMLString, toXMLString
-
-
-
-
Method Detail
-
getAttributes
List<Attribute> getAttributes()
ReturnsAttribute
objects.- Returns:
- the
Attribute
objects. - See Also:
setAttributes(List)
-
setAttributes
void setAttributes(List<Attribute> attributes) throws SAML2Exception
Sets theAttribute
objects.- Parameters:
attributes
- the newAttribute
objects.- Throws:
SAML2Exception
- if the object is immutable.- See Also:
getAttributes()
-
-