javax.xml.crypto.enc

Interface EncryptionProperties

All Superinterfaces:
XMLStructure

  1. public interface EncryptionProperties
  2. extends XMLStructure
A representation of the XML EncryptionProperties element as defined in the W3C Recommendation for XML-Encryption Syntax and Processing. The XML Schema Definition is defined as:

<element name="'EncryptionProperties'type='xenc:EncryptionPropertiesType'/"> <complextype name="'EncryptionPropertiesType'"> <sequence> <element ref="'xenc:EncryptionProperty'maxOccurs='unbounded'/"> </sequence> <attribute name="'Id'type='ID'use='optional'/"> </complextype>

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
TYPE
URI identifying the EncryptionProperties type: http://www.w3.org/2001/04/xmlenc#EncryptionProperties.

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getId()
Returns the optional ID.
  1. java.util.List
getProperties()
Returns an unmodifiable list of EncryptionPropertys.
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported

Field Detail

TYPE

  1. static final java.lang.String TYPE
URI identifying the EncryptionProperties type: http://www.w3.org/2001/04/xmlenc#EncryptionProperties. This can be used within a Reference object to identify the referent's type.
See Also:

Method Detail

getProperties

  1. java.util.List getProperties()
Returns an unmodifiable list of EncryptionPropertys.
Returns:
an unmodifiable list of EncryptionPropertys (never null or empty)

getId

  1. java.lang.String getId()
Returns the optional ID.
Returns:
the ID, or null if not specified.