Class Match
- java.lang.Object
-
- com.sun.identity.entitlement.xacml3.core.Match
-
- All Implemented Interfaces:
XACMLRootElement
public class Match extends Object implements XACMLRootElement
Java class for MatchType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MatchType"> <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"/> <choice> <element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}AttributeDesignator"/> <element ref="{urn:oasis:names:tc:xacml:3.0:core:schema:wd-17}AttributeSelector"/> </choice> </sequence> <attribute name="MatchId" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AttributeDesignatorattributeDesignatorprotected AttributeSelectorattributeSelectorprotected AttributeValueattributeValueprotected StringmatchId-
Fields inherited from interface com.sun.identity.entitlement.xacml3.core.XACMLRootElement
XACML3_NAMESPACE
-
-
Constructor Summary
Constructors Constructor Description Match()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeDesignatorgetAttributeDesignator()Gets the value of the attributeDesignator property.AttributeSelectorgetAttributeSelector()Gets the value of the attributeSelector property.AttributeValuegetAttributeValue()Gets the value of the attributeValue property.StringgetMatchId()Gets the value of the matchId property.voidsetAttributeDesignator(AttributeDesignator value)Sets the value of the attributeDesignator property.voidsetAttributeSelector(AttributeSelector value)Sets the value of the attributeSelector property.voidsetAttributeValue(AttributeValue value)Sets the value of the attributeValue property.voidsetMatchId(String value)Sets the value of the matchId property.StringtoXML()Default toXML Method to Marshal Object into XML.
-
-
-
Field Detail
-
attributeValue
protected AttributeValue attributeValue
-
attributeDesignator
protected AttributeDesignator attributeDesignator
-
attributeSelector
protected AttributeSelector attributeSelector
-
matchId
protected String matchId
-
-
Method Detail
-
getAttributeValue
public AttributeValue getAttributeValue()
Gets the value of the attributeValue property.- Returns:
- possible object is
AttributeValue
-
setAttributeValue
public void setAttributeValue(AttributeValue value)
Sets the value of the attributeValue property.- Parameters:
value- allowed object isAttributeValue
-
getAttributeDesignator
public AttributeDesignator getAttributeDesignator()
Gets the value of the attributeDesignator property.- Returns:
- possible object is
AttributeDesignator
-
setAttributeDesignator
public void setAttributeDesignator(AttributeDesignator value)
Sets the value of the attributeDesignator property.- Parameters:
value- allowed object isAttributeDesignator
-
getAttributeSelector
public AttributeSelector getAttributeSelector()
Gets the value of the attributeSelector property.- Returns:
- possible object is
AttributeSelector
-
setAttributeSelector
public void setAttributeSelector(AttributeSelector value)
Sets the value of the attributeSelector property.- Parameters:
value- allowed object isAttributeSelector
-
getMatchId
public String getMatchId()
Gets the value of the matchId property.- Returns:
- possible object is
String
-
setMatchId
public void setMatchId(String value)
Sets the value of the matchId 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.
-
-