Package org.opensaml.xacml.policy
Interface ResourceMatchType
-
- All Superinterfaces:
XACMLObject,XMLObject
public interface ResourceMatchType extends XACMLObject
XACML ResourceMatch schema type.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMELocal name of the element ResourceMatch.static QNameDEFAULT_ELEMENT_NAMEQName of the element ResourceMatch.static StringMATCH_ID_ATTRIB_NAMEMatchID attribute name.static StringSCHEMA_TYPE_LOCAL_NAMELocal name of the XSI type.static QNameSCHEMA_TYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeSelectorTypegetAttributeSelector()Gets the attribute selector for this match.AttributeValueTypegetAttributeValue()Gets the attribute value for this match.StringgetMatchId()Gets the ID of this match.AttributeDesignatorTypegetResourceAttributeDesignator()Gets the resource attribute designator for this match.voidsetAttributeSelector(AttributeSelectorType selector)Sets the attribute selector for this match.voidsetAttributeValue(AttributeValueType value)Sets the attribute value for this match.voidsetMatchId(String id)Sets the ID of this match.voidsetResourceAttributeDesignator(AttributeDesignatorType attribute)Sets the resource attribute designator for this match.-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Local name of the element ResourceMatch.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
QName of the element ResourceMatch.
-
SCHEMA_TYPE_LOCAL_NAME
static final String SCHEMA_TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
SCHEMA_TYPE_NAME
static final QName SCHEMA_TYPE_NAME
QName of the XSI type.
-
MATCH_ID_ATTRIB_NAME
static final String MATCH_ID_ATTRIB_NAME
MatchID attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getAttributeValue
AttributeValueType getAttributeValue()
Gets the attribute value for this match.- Returns:
- attribute value for this match
-
setAttributeValue
void setAttributeValue(AttributeValueType value)
Sets the attribute value for this match.- Parameters:
value- attribute value for this match
-
getResourceAttributeDesignator
AttributeDesignatorType getResourceAttributeDesignator()
Gets the resource attribute designator for this match.- Returns:
- resource attribute designator for this match
-
setResourceAttributeDesignator
void setResourceAttributeDesignator(AttributeDesignatorType attribute)
Sets the resource attribute designator for this match.- Parameters:
attribute- resource attribute designator for this match
-
getAttributeSelector
AttributeSelectorType getAttributeSelector()
Gets the attribute selector for this match.- Returns:
- attribute selector for this match
-
setAttributeSelector
void setAttributeSelector(AttributeSelectorType selector)
Sets the attribute selector for this match.- Parameters:
selector- attribute selector for this match
-
getMatchId
String getMatchId()
Gets the ID of this match.- Returns:
- ID of this match
-
setMatchId
void setMatchId(String id)
Sets the ID of this match.- Parameters:
id- ID of this match
-
-