Package com.sun.identity.xacml.context
Interface MissingAttributeDetail
-
@SupportedAll public interface MissingAttributeDetail
TheStatusCode
element is a container of one or moreStatus
s issuded by authorization authority.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAttributeId()
Returns theAttributeId
s of this objectList
getAttributeValues()
Returns theAttributeValue
s of this objectString
getDataType()
Returns theDataType
s of this objectString
getIssuer()
Returns theIssuer
s of this objectboolean
isMutable()
Checks if the object is mutablevoid
makeImmutable()
Makes the object immutablevoid
setAttributeId(String attributeId)
Sets theAttributeId
s of this objectvoid
setAttributeValues(List values)
Sets theAttributeValue
s of this objectvoid
setDataType(String dataType)
Sets theDataType
s of this objectvoid
setIssuer(String issuer)
Sets theIssuer
s of this objectString
toXMLString()
Returns a string representationString
toXMLString(boolean includeNSPrefix, boolean declareNS)
Returns a string representation
-
-
-
Method Detail
-
getAttributeValues
List getAttributeValues()
Returns theAttributeValue
s of this object- Returns:
- the
AttributeValue
s of this object
-
setAttributeValues
void setAttributeValues(List values) throws XACMLException
Sets theAttributeValue
s of this object- Parameters:
values
- theAttributeValue
s of this object- Throws:
XACMLException
- if the object is immutable
-
getAttributeId
String getAttributeId()
Returns theAttributeId
s of this object- Returns:
- the
AttributeId
s of this object
-
setAttributeId
void setAttributeId(String attributeId) throws XACMLException
Sets theAttributeId
s of this object- Parameters:
attributeId
- theAttributeId
s of this object- Throws:
XACMLException
- if the object is immutable
-
getDataType
String getDataType()
Returns theDataType
s of this object- Returns:
- the
DataType
s of this object
-
setDataType
void setDataType(String dataType) throws XACMLException
Sets theDataType
s of this object- Parameters:
dataType
- theDataType
s of this object- Throws:
XACMLException
- if the object is immutable
-
getIssuer
String getIssuer()
Returns theIssuer
s of this object- Returns:
- the
Issuer
s of this object
-
setIssuer
void setIssuer(String issuer) throws XACMLException
Sets theIssuer
s of this object- Parameters:
issuer
- theIssuer
s of this object- Throws:
XACMLException
- if the object is immutable
-
toXMLString
String toXMLString(boolean includeNSPrefix, boolean declareNS) throws XACMLException
Returns a string representation- 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
- Throws:
XACMLException
- if conversion fails for any reason
-
toXMLString
String toXMLString() throws XACMLException
Returns a string representation- Returns:
- a string representation
- 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
-
-