Package org.opensaml.xmlsec.encryption
Interface EncryptionProperties
-
- All Superinterfaces:
org.opensaml.core.xml.XMLObject
public interface EncryptionProperties extends org.opensaml.core.xml.XMLObjectXMLObject representing XML Encryption, version 20021210, EncryptionProperties element.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement local name.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringID_ATTRIB_NAMEID attribute 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 List<EncryptionProperty>getEncryptionProperties()Get the list of EncryptionProperty child elements.StringgetID()Get the ID attribute that uniquely identifies this element.voidsetID(String newID)Set the ID attribute that uniquely identifies this 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.
-
ID_ATTRIB_NAME
static final String ID_ATTRIB_NAME
ID attribute name.- See Also:
- Constant Field Values
-
-
Method Detail
-
getID
@Nullable String getID()
Get the ID attribute that uniquely identifies this element.- Returns:
- ID attribute
-
setID
void setID(@Nullable String newID)Set the ID attribute that uniquely identifies this element.- Parameters:
newID- the new ID attribute value
-
getEncryptionProperties
@Nonnull List<EncryptionProperty> getEncryptionProperties()
Get the list of EncryptionProperty child elements.- Returns:
- the List of EncryptionProperty child elements
-
-