Package org.opensaml.xmlsec.signature
Interface KeyValue
-
- All Superinterfaces:
org.opensaml.core.xml.XMLObject
public interface KeyValue extends org.opensaml.core.xml.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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DSAKeyValue
getDSAKeyValue()
Get the DSAKeyValue child element.ECKeyValue
getECKeyValue()
Get the ECKeyValue child element.RSAKeyValue
getRSAKeyValue()
Get the RSAKeyValue child element.org.opensaml.core.xml.XMLObject
getUnknownXMLObject()
Get the wildcard <any> XMLObject 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(org.opensaml.core.xml.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 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.
-
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.
-
-
Method Detail
-
getDSAKeyValue
@Nullable DSAKeyValue getDSAKeyValue()
Get the DSAKeyValue child element.- Returns:
- DSAKeyValue child element
-
setDSAKeyValue
void setDSAKeyValue(@Nullable DSAKeyValue newDSAKeyValue)
Set the DSAKeyValue child element.- Parameters:
newDSAKeyValue
- the new DSAKeyValue child element
-
getRSAKeyValue
@Nullable RSAKeyValue getRSAKeyValue()
Get the RSAKeyValue child element.- Returns:
- the RSAKeyValue child element
-
setRSAKeyValue
void setRSAKeyValue(@Nullable RSAKeyValue newRSAKeyValue)
Set the RSAKeyValue child element.- Parameters:
newRSAKeyValue
- the new RSAKeyValue child element
-
getECKeyValue
@Nullable ECKeyValue getECKeyValue()
Get the ECKeyValue child element.- Returns:
- the ECKeyValue child element
-
setECKeyValue
void setECKeyValue(@Nullable ECKeyValue newECKeyValue)
Set the ECKeyValue child element.- Parameters:
newECKeyValue
- the new ECKeyValue child element
-
getUnknownXMLObject
@Nullable org.opensaml.core.xml.XMLObject getUnknownXMLObject()
Get the wildcard <any> XMLObject child element.- Returns:
- the wildcard XMLObject child element
-
setUnknownXMLObject
void setUnknownXMLObject(@Nullable org.opensaml.core.xml.XMLObject newXMLObject)
Set the wildcard <any> XMLObject child element.- Parameters:
newXMLObject
- the wildcard XMLObject child element
-
-