Package org.opensaml.xmlsec.signature
Interface KeyValue
-
- All Superinterfaces:
org.opensaml.core.xml.XMLObject
public interface KeyValue extends org.opensaml.core.xml.XMLObjectXMLObject representing XML Digital Signature, version 20020212, KeyValue element.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DSAKeyValuegetDSAKeyValue()Get the DSAKeyValue child element.ECKeyValuegetECKeyValue()Get the ECKeyValue child element.RSAKeyValuegetRSAKeyValue()Get the RSAKeyValue child element.org.opensaml.core.xml.XMLObjectgetUnknownXMLObject()Get the wildcard <any> XMLObject child element.voidsetDSAKeyValue(DSAKeyValue newDSAKeyValue)Set the DSAKeyValue child element.voidsetECKeyValue(ECKeyValue newECKeyValue)Set the ECKeyValue child element.voidsetRSAKeyValue(RSAKeyValue newRSAKeyValue)Set the RSAKeyValue child element.voidsetUnknownXMLObject(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
-
-