Interface KeyAuthority
-
- All Superinterfaces:
AttributeExtensibleXMLObject,XMLObject
- All Known Implementing Classes:
KeyAuthorityImpl
public interface KeyAuthority extends AttributeExtensibleXMLObject
XMLObject for the Shibboleth KeyAuthority metadata extension.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringVERIFY_DEPTH_ATTRIB_NAMEVerifyDepth attribute name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<KeyInfo>getKeyInfos()Get the list of KeyInfo child elements.IntegergetVerifyDepth()Get the VerifyDepth attribute value.voidsetVerifyDepth(Integer newVerifyDepth)Set the VerifyDepth attribute value.-
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
Element local name.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
VERIFY_DEPTH_ATTRIB_NAME
static final String VERIFY_DEPTH_ATTRIB_NAME
VerifyDepth attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getKeyInfos
List<KeyInfo> getKeyInfos()
Get the list of KeyInfo child elements.- Returns:
- the list of KeyInfo child elements
-
getVerifyDepth
Integer getVerifyDepth()
Get the VerifyDepth attribute value.- Returns:
- the VerifyDepth attribute value
-
setVerifyDepth
void setVerifyDepth(Integer newVerifyDepth)
Set the VerifyDepth attribute value.- Parameters:
newVerifyDepth- the new VerifyDepth attribute value
-
-