Package com.sun.identity.xacml.context
Interface Subject
-
- All Superinterfaces:
XmlSerializable
- All Known Implementing Classes:
SubjectImpl
@SupportedAll public interface Subject extends XmlSerializable
TheSubject
element specifies information about a subject of theRequest
context by listing a sequence ofAttribute
elements associated with the subject. A subject is an entity associated with the access request.<xs:complexType name="SubjectType"> <xs:sequence> <xs:element ref="xacml-context:Attribute" minOccurs="0" maxOccurs="unbounded"/> <xs:sequence> <xs:attribute name="SubjectCategory" type="xs:anyURI" default="urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"/> <xs:complexType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description List
getAttributes()
Returns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned.URI
getSubjectCategory()
Returns theSubjectCategory
of this object.boolean
isMutable()
Checks if the object is mutablevoid
makeImmutable()
Makes the object immutablevoid
setAttributes(List attributes)
Sets theAttribute
elements of this objectvoid
setSubjectCategory(URI subjectCategory)
Sets theSubjectCategory
of this objectdefault String
toXMLString()
Returns a string representation of this objectdefault String
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns aString
representation of this object-
Methods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment
-
-
-
-
Method Detail
-
getAttributes
List getAttributes()
Returns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned. Typically aSubject
element will contain anAttribute
with anAttributeId
of "urn:oasis:names:tc:xacml:1.0:subject:subject-id", containing the identity of theSubject
- Returns:
- the
Attribute
elements of this object
-
setAttributes
void setAttributes(List attributes) throws XACMLException
Sets theAttribute
elements of this object- Parameters:
attributes
-Attribute
elements of this object attributes could be an emptyList
, if no attributes are present.- Throws:
XACMLException
- if the object is immutable An object is consideredimmutable
ifmakeImmutable()
has been invoked on it. It can be determined by callingisMutable
on the object.
-
getSubjectCategory
URI getSubjectCategory()
Returns theSubjectCategory
of this object. This is optional so could be null if not defined. This attribute indicates the role that the parentSubject
played in the formation of the access request. If this attribute is not present in theSubject
element, then the default value of urn:oasis:names:tc:xacml:1.0:subject-category:access-subject SHALL be used, indicating that theSubject
represents the entity ultimately responsible for initiating the access request.- Returns:
URI
representing theSubjectCategory
of this object.
-
setSubjectCategory
void setSubjectCategory(URI subjectCategory) throws XACMLException
Sets theSubjectCategory
of this object- Parameters:
subjectCategory
-URI
- Throws:
XACMLException
- if the object is immutable An object is consideredimmutable
ifmakeImmutable()
has been invoked on it. It can be determined by callingisMutable
on the object.
-
toXMLString
default String toXMLString(boolean includeNSPrefix, boolean declareNS) throws XACMLException
Returns aString
representation of this object- Specified by:
toXMLString
in interfaceXmlSerializable
- Parameters:
includeNSPrefix
- Determines whether or not the namespace qualifier is prepended to the Element when converteddeclareNS
- Determines whether or not the namespace is declared within the Element.- Returns:
- a string representation of this object
- Throws:
XACMLException
- if conversion fails for any reason
-
toXMLString
default String toXMLString() throws XACMLException
Returns a string representation of this object- Specified by:
toXMLString
in interfaceXmlSerializable
- Returns:
- a string representation of this object
- Throws:
XACMLException
- if conversion fails for any reason
-
makeImmutable
void makeImmutable()
Makes the object immutable
-
isMutable
boolean isMutable()
Checks if the object is mutable- Returns:
true
if the object is mutable,false
otherwise
-
-