Package org.opensaml.saml.saml2.core
Interface EncryptedElementType
-
- All Superinterfaces:
SAMLObject,XMLObject
- All Known Subinterfaces:
EncryptedAssertion,EncryptedAttribute,EncryptedID,NewEncryptedID
public interface EncryptedElementType extends SAMLObject
SAML 2.0 Core EncryptedElementType.
-
-
Field Summary
Fields Modifier and Type Field Description 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 EncryptedDatagetEncryptedData()Get the EncryptedData child element.List<EncryptedKey>getEncryptedKeys()A list of EncryptedKey child elements.voidsetEncryptedData(EncryptedData newEncryptedData)Set the EncryptedData 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
-
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
-
getEncryptedData
EncryptedData getEncryptedData()
Get the EncryptedData child element.- Returns:
- the EncryptedData child element
-
setEncryptedData
void setEncryptedData(EncryptedData newEncryptedData)
Set the EncryptedData child element.- Parameters:
newEncryptedData- the new EncryptedData child element
-
getEncryptedKeys
List<EncryptedKey> getEncryptedKeys()
A list of EncryptedKey child elements.- Returns:
- a list of EncryptedKey child elements
-
-