Class MissingAttributeDetail
- java.lang.Object
-
- com.sun.identity.entitlement.xacml3.core.MissingAttributeDetail
-
- All Implemented Interfaces:
XACMLRootElement
public class MissingAttributeDetail extends Object implements XACMLRootElement
Java class for MissingAttributeDetailType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MissingAttributeDetailType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}AttributeValue" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Category" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="AttributeId" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="DataType" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="Issuer" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringattributeIdprotected List<AttributeValue>attributeValueprotected Stringcategoryprotected StringdataTypeprotected Stringissuer-
Fields inherited from interface com.sun.identity.entitlement.xacml3.core.XACMLRootElement
XACML3_NAMESPACE
-
-
Constructor Summary
Constructors Constructor Description MissingAttributeDetail()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttributeId()Gets the value of the attributeId property.List<AttributeValue>getAttributeValue()Gets the value of the attributeValue property.StringgetCategory()Gets the value of the category property.StringgetDataType()Gets the value of the dataType property.StringgetIssuer()Gets the value of the issuer property.voidsetAttributeId(String value)Sets the value of the attributeId property.voidsetCategory(String value)Sets the value of the category property.voidsetDataType(String value)Sets the value of the dataType property.voidsetIssuer(String value)Sets the value of the issuer property.StringtoXML()Default toXML Method to Marshal Object into XML.
-
-
-
Method Detail
-
getAttributeValue
public List<AttributeValue> getAttributeValue()
Gets the value of the attributeValue property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the attributeValue property.For example, to add a new item, do as follows:
getAttributeValue().add(newItem);Objects of the following type(s) are allowed in the list
AttributeValue
-
getCategory
public String getCategory()
Gets the value of the category property.- Returns:
- possible object is
String
-
setCategory
public void setCategory(String value)
Sets the value of the category property.- Parameters:
value- allowed object isString
-
getAttributeId
public String getAttributeId()
Gets the value of the attributeId property.- Returns:
- possible object is
String
-
setAttributeId
public void setAttributeId(String value)
Sets the value of the attributeId property.- Parameters:
value- allowed object isString
-
getDataType
public String getDataType()
Gets the value of the dataType property.- Returns:
- possible object is
String
-
setDataType
public void setDataType(String value)
Sets the value of the dataType property.- Parameters:
value- allowed object isString
-
getIssuer
public String getIssuer()
Gets the value of the issuer property.- Returns:
- possible object is
String
-
setIssuer
public void setIssuer(String value)
Sets the value of the issuer property.- Parameters:
value- allowed object isString
-
toXML
public String toXML()
Default toXML Method to Marshal Object into XML.- Specified by:
toXMLin interfaceXACMLRootElement- Returns:
- String - Marshaled Results into XML String.
-
-