Package com.sun.identity.xacml.context
Interface ResourceContent
- All Superinterfaces:
XmlSerializable
The
ResourceContent 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:complexType name="ResourceContentType" mixed="true">
<xs:sequence>
<xs:any namespace="##any" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
<xs:sequence>
<xs:anyAttribute namespace="##any" processContents="lax"/>
<xs:complexType>
-
Method Summary
Modifier and TypeMethodDescriptionReturns zero to manyAttributeelements of this object If no attributes and present, emptyListwill be returned.Returns the resource content of theResourcebooleanChecks if the object is mutablevoidMakes the object immutablevoidsetAttributes(List attributes) Sets theAttributeelements of this objectvoidsetResourceContent(String resourceContent) Sets the resource content of this objectdefault StringReturns a string representation of this objectdefault StringtoXMLString(boolean includeNSPrefix, boolean declareNS) Returns aStringrepresentation of this objectMethods inherited from interface com.sun.identity.saml2.common.XmlSerializable
toDocumentFragment
-
Method Details
-
getResourceContent
String getResourceContent()Returns the resource content of theResource- Returns:
Stringrepresenting the contents of theResource.
-
setResourceContent
Sets the resource content of this object- Parameters:
resourceContent-ResourceContentof this objectResourceContentis optional so could be null. are present.- Throws:
XACMLException- if the object is immutable An object is consideredimmutableifmakeImmutable()has been invoked on it. It can be determined by callingisMutableon the object.
-
getAttributes
List getAttributes()Returns zero to manyAttributeelements of this object If no attributes and present, emptyListwill be returned. Typically aResourceelement will contain anAttributewith anAttributeIdof "urn:oasis:names:tc:xacml:1.0:resource:resource-id". Each suchAttributeSHALL be an absolute abd fully resolved representation of the identity of the single resource to which access is requested.- Returns:
Listcontaining theAttributeelements of this object
-
setAttributes
Sets theAttributeelements of this object- Parameters:
attributes-Attributeelements of this object attributes could be an emptyList, if no attributes are present.- Throws:
XACMLException- if the object is immutable An object is consideredimmutableifmakeImmutable()has been invoked on it. It can be determined by callingisMutableon the object.
-
toXMLString
Returns aStringrepresentation of this object- Specified by:
toXMLStringin 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:
toXMLStringin 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:
trueif the object is mutable,falseotherwise
-