Package org.opensaml.xmlsec.signature
Interface KeyValue
- All Superinterfaces:
XMLObject
- All Known Implementing Classes:
KeyValueImpl
public interface KeyValue extends XMLObject
XMLObject representing XML Digital Signature, version 20020212, KeyValue element.
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_ELEMENT_LOCAL_NAME
Element local name.static QName
DEFAULT_ELEMENT_NAME
Default element name.static String
TYPE_LOCAL_NAME
Local name of the XSI type.static QName
TYPE_NAME
QName of the XSI type. -
Method Summary
Modifier and Type Method Description default DHKeyValue
getDHKeyValue()
Get the DHKeyValue child element.DSAKeyValue
getDSAKeyValue()
Get the DSAKeyValue child element.ECKeyValue
getECKeyValue()
Get the ECKeyValue child element.RSAKeyValue
getRSAKeyValue()
Get the RSAKeyValue child element.XMLObject
getUnknownXMLObject()
Get the wildcard <any> XMLObject child element.default void
setDHKeyValue(DHKeyValue newDHKeyValue)
Set the DHKeyValue child element.void
setDSAKeyValue(DSAKeyValue newDSAKeyValue)
Set the DSAKeyValue child element.void
setECKeyValue(ECKeyValue newECKeyValue)
Set the ECKeyValue child element.void
setRSAKeyValue(RSAKeyValue newRSAKeyValue)
Set the RSAKeyValue child element.void
setUnknownXMLObject(XMLObject newXMLObject)
Set the wildcard <any> XMLObject child element.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 Details
-
DEFAULT_ELEMENT_LOCAL_NAME
Element local name.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
Default element name. -
TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
QName of the XSI type.
-
-
Method Details
-
getDSAKeyValue
Get the DSAKeyValue child element.- Returns:
- DSAKeyValue child element
-
setDSAKeyValue
Set the DSAKeyValue child element.- Parameters:
newDSAKeyValue
- the new DSAKeyValue child element
-
getRSAKeyValue
Get the RSAKeyValue child element.- Returns:
- the RSAKeyValue child element
-
setRSAKeyValue
Set the RSAKeyValue child element.- Parameters:
newRSAKeyValue
- the new RSAKeyValue child element
-
getECKeyValue
Get the ECKeyValue child element.- Returns:
- the ECKeyValue child element
-
setECKeyValue
Set the ECKeyValue child element.- Parameters:
newECKeyValue
- the new ECKeyValue child element
-
getDHKeyValue
Get the DHKeyValue child element.- Returns:
- DHKeyValue child element
-
setDHKeyValue
Set the DHKeyValue child element.- Parameters:
newDHKeyValue
- the new DHKeyValue child element
-
getUnknownXMLObject
Get the wildcard <any> XMLObject child element.- Returns:
- the wildcard XMLObject child element
-
setUnknownXMLObject
Set the wildcard <any> XMLObject child element.- Parameters:
newXMLObject
- the wildcard XMLObject child element
-