Interface MatchValue
-
- All Superinterfaces:
AttributeExtensibleXMLObject,SAMLObject,XMLObject,XSString
- All Known Implementing Classes:
MatchValueImpl
public interface MatchValue extends XSString, SAMLObject, AttributeExtensibleXMLObject
Definition for theMatchValuetype:<xs:complexType name="MatchValueType"> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="NameFormat" type="xs:anyURI" default="urn:oasis:names:tc:SAML:2.0:attrname-format:uri" /> <xs:attribute name="Name" type="xs:string" use="required" /> <xs:anyAttribute namespace="##any" /> </xs:extension> </xs:simpleContent> </xs:complexType>- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEName of the element.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringNAME_ATTR_NAMEAttribute label for the Name attribute.static StringNAME_FORMAT_ATTR_NAMEAttribute label for the NameFormat attribute.static StringTYPE_LOCAL_NAMELocal name of the typestatic QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Returns theNameattribute.StringgetNameFormat()Returns theNameFormatattribute.voidsetName(String name)Assigns theNameattribute.voidsetNameFormat(String nameFormat)Assigns theNameFormatattribute.-
Methods inherited from interface org.opensaml.core.xml.AttributeExtensibleXMLObject
getUnknownAttributes
-
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
Name of the element.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the type- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
NAME_FORMAT_ATTR_NAME
static final String NAME_FORMAT_ATTR_NAME
Attribute label for the NameFormat attribute.- See Also:
- Constant Field Values
-
NAME_ATTR_NAME
static final String NAME_ATTR_NAME
Attribute label for the Name attribute.- See Also:
- Constant Field Values
-
-
Method Detail
-
getNameFormat
String getNameFormat()
Returns theNameFormatattribute.- Returns:
- the name format attribute
-
setNameFormat
void setNameFormat(String nameFormat)
Assigns theNameFormatattribute.- Parameters:
nameFormat- the name format
-
getName
String getName()
Returns theNameattribute.- Returns:
- the name
-
setName
void setName(String name)
Assigns theNameattribute.- Parameters:
name- the name
-
-