Package com.sun.identity.xacml.context
Interface Resource
- All Superinterfaces:
XmlSerializable
- All Known Implementing Classes:
ResourceImpl
The
Resource
element specifies information about the
resource to which access is requested by listing a
sequence of Attribute
elements associated with the
resource. it may include ResourceContent
<xs:element name="Resource" type="xacml-context:ResourceType"/> <xs:complexType name="ResourceType"> <xs:sequence> <xs:element ref="xacml-context:ResourceContent" minOccurs="0"/> <xs:element ref="xacml-context:Attribute" minOccurs="0" maxOccurs="unbounded"/> <xs:sequence> <xs:complexType>
-
Method Summary
Modifier and TypeMethodDescriptionReturns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned.Returns the resource content of theResource
boolean
Checks if the object is mutablevoid
Makes the object immutablevoid
setAttributes
(List attributes) Sets theAttribute
elements of this objectvoid
setResourceContent
(Element resourceContent) Sets the resource content of this objectdefault String
Returns a string representation of this objectdefault String
toXMLString
(boolean includeNSPrefix, boolean declareNS) Returns aString
representation of this objectMethods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment
-
Method Details
-
getResourceContent
Element getResourceContent()Returns the resource content of theResource
- Returns:
String
representing the contents of theResource
.
-
setResourceContent
Sets the resource content of this object- Parameters:
resourceContent
- Resource Content of this resource resource content is optional so could be null.- 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.
-
getAttributes
List getAttributes()Returns zero to manyAttribute
elements of this object If no attributes and present, emptyList
will be returned. Typically aResource
element will contain anAttribute
with anAttributeId
of "urn:oasis:names:tc:xacml:1.0:resource:resource-id". Each suchAttribute
SHALL be an absolute abd fully resolved representation of the identity of the single resource to which access is requested.- Returns:
List
containing theAttribute
elements of this object
-
setAttributes
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.
-
toXMLString
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
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
-