Package org.opensaml.saml.saml2.metadata
Interface RequestedAttribute
-
- All Superinterfaces:
Attribute,AttributeExtensibleXMLObject,SAMLObject,XMLObject
public interface RequestedAttribute extends Attribute
SAML 2.0 Metadata RequestedAttribute.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMELocal name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringIS_REQUIRED_ATTRIB_NAME"isRequired" attribute's local name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.-
Fields inherited from interface org.opensaml.saml.saml2.core.Attribute
BASIC, FRIENDLY_NAME_ATTRIB_NAME, NAME_ATTTRIB_NAME, NAME_FORMAT_ATTRIB_NAME, UNSPECIFIED, URI_REFERENCE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanisRequired()Checks to see if this requested attribute is also required.XSBooleanValueisRequiredXSBoolean()Checks to see if this requested attribute is also required.voidsetIsRequired(Boolean newIsRequire)Sets if this requested attribute is also required.voidsetIsRequired(XSBooleanValue newIsRequire)Sets if this requested attribute is also required.-
Methods inherited from interface org.opensaml.saml.saml2.core.Attribute
getAttributeValues, getFriendlyName, getName, getNameFormat, setFriendlyName, setName, setNameFormat
-
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
Local name, no namespace.- 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 XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
IS_REQUIRED_ATTRIB_NAME
static final String IS_REQUIRED_ATTRIB_NAME
"isRequired" attribute's local name.- See Also:
- Constant Field Values
-
-
Method Detail
-
isRequired
Boolean isRequired()
Checks to see if this requested attribute is also required.- Returns:
- true if this attribute is required
-
isRequiredXSBoolean
XSBooleanValue isRequiredXSBoolean()
Checks to see if this requested attribute is also required.- Returns:
- true if this attribute is required
-
setIsRequired
void setIsRequired(Boolean newIsRequire)
Sets if this requested attribute is also required. Boolean values will be marshalled to either "true" or "false".- Parameters:
newIsRequire- true if this attribute is required
-
setIsRequired
void setIsRequired(XSBooleanValue newIsRequire)
Sets if this requested attribute is also required.- Parameters:
newIsRequire- true if this attribute is required
-
-