Package com.sun.identity.xacml.context
Interface MissingAttributeDetail
-
- All Superinterfaces:
XmlSerializable
@SupportedAll public interface MissingAttributeDetail extends XmlSerializable
TheStatusCode
element is a container of one or moreStatus
s issuded by authorization authority.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default 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 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
-
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
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
-
-