public class

DOMCryptoContext

extends Object
implements XMLCryptoContext
java.lang.Object
   ↳ javax.xml.crypto.dom.DOMCryptoContext
Known Direct Subclasses

Class Overview

This class provides a DOM-specific implementation of the XMLCryptoContext interface. It also includes additional methods that are specific to a DOM-based implementation for registering and retrieving elements that contain attributes of type ID.

Summary

Protected Constructors
DOMCryptoContext()
Default constructor.
Public Methods
Object get(Object key)
This implementation uses an internal HashMap to get the object that the specified key maps to.
String getBaseURI()
Returns the base URI.
String getDefaultNamespacePrefix()
Returns the default namespace prefix.
Element getElementById(String idValue)
Returns the Element with the specified ID attribute value.
KeySelector getKeySelector()
Returns the key selector for finding a key.
String getNamespacePrefix(String namespaceURI, String defaultPrefix)
This implementation uses an internal HashMap to get the prefix that the specified URI maps to.
Object getProperty(String name)
This implementation uses an internal HashMap to get the object that the specified name maps to.
URIDereferencer getURIDereferencer()
Returns a URIDereferencer that is used to dereference URIReferences.
Iterator iterator()
Returns a read-only iterator over the set of Id/Element mappings of this DOMCryptoContext.
Object put(Object key, Object value)
This implementation uses an internal HashMap to map the key to the specified object.
String putNamespacePrefix(String namespaceURI, String prefix)
This implementation uses an internal HashMap to map the URI to the specified prefix.
void setBaseURI(String baseURI)
Sets the base URI.
void setDefaultNamespacePrefix(String defaultPrefix)
Sets the default namespace prefix.
void setIdAttributeNS(Element element, String namespaceURI, String localName)
Registers the element's attribute specified by the namespace URI and local name to be of type ID.
void setKeySelector(KeySelector ks)
Sets the key selector for finding a key.
Object setProperty(String name, Object value)
This implementation uses an internal HashMap to map the name to the specified object.
void setURIDereferencer(URIDereferencer dereferencer)
Sets a URIDereferencer that is used to dereference URIReferences.
[Expand]
Inherited Methods
From class java.lang.Object
From interface javax.xml.crypto.XMLCryptoContext

Protected Constructors

protected DOMCryptoContext ()

Default constructor. (For invocation by subclass constructors).

Public Methods

public Object get (Object key)

This implementation uses an internal HashMap to get the object that the specified key maps to.

Parameters
key the key whose associated value is to be returned
Returns
  • the value to which this context maps the specified key, or null if there is no mapping for the key

public String getBaseURI ()

Returns the base URI.

Returns
  • the base URI, or null if not specified

public String getDefaultNamespacePrefix ()

Returns the default namespace prefix. The default namespace prefix is the prefix for all namespace URIs not explicitly set by the putNamespacePrefix method.

Returns
  • the default namespace prefix, or null if none has been set.

public Element getElementById (String idValue)

Returns the Element with the specified ID attribute value.

This implementation uses an internal HashMap to get the element that the specified attribute value maps to.

Parameters
idValue the value of the ID
Returns
  • the Element with the specified ID attribute value, or null if none.
Throws
NullPointerException if idValue is null

public KeySelector getKeySelector ()

Returns the key selector for finding a key.

Returns
  • the key selector, or null if not specified

public String getNamespacePrefix (String namespaceURI, String defaultPrefix)

This implementation uses an internal HashMap to get the prefix that the specified URI maps to. It returns the defaultPrefix if it maps to null.

Parameters
namespaceURI a namespace URI
defaultPrefix the prefix to be returned in the event that the the specified namespace URI has not been bound to a prefix.
Returns
  • the prefix that is associated with the specified namespace URI, or defaultPrefix if the URI is not registered. If the namespace URI is registered but has no prefix, an empty string ("") is returned.

public Object getProperty (String name)

This implementation uses an internal HashMap to get the object that the specified name maps to.

Parameters
name the name of the property
Returns
  • the current value of the specified property, or null if it does not have a value

public URIDereferencer getURIDereferencer ()

Returns a URIDereferencer that is used to dereference URIReferences.

Returns
  • the URIDereferencer, or null if not specified

public Iterator iterator ()

Returns a read-only iterator over the set of Id/Element mappings of this DOMCryptoContext. Attempts to modify the set via the remove() method throw an UnsupportedOperationException. The mappings are returned in no particular order. Each element in the iteration is represented as a Map.Entry. If the DOMCryptoContext is modified while an iteration is in progress, the results of the iteration are undefined.

Returns
  • a read-only iterator over the set of mappings

public Object put (Object key, Object value)

This implementation uses an internal HashMap to map the key to the specified object.

Parameters
key key with which the specified value is to be associated with
value value to be associated with the specified key
Returns
  • the previous value associated with the key, or null if there was no mapping for the key

public String putNamespacePrefix (String namespaceURI, String prefix)

This implementation uses an internal HashMap to map the URI to the specified prefix.

Parameters
namespaceURI a namespace URI
prefix a namespace prefix (or null to remove any existing mapping). Specifying the empty string ("") binds no prefix to the namespace URI.
Returns
  • the previous prefix associated with the specified namespace URI, or null if there was none

public void setBaseURI (String baseURI)

Sets the base URI.

Parameters
baseURI the base URI, or null to remove current value

public void setDefaultNamespacePrefix (String defaultPrefix)

Sets the default namespace prefix. This sets the namespace prefix for all namespace URIs not explicitly set by the putNamespacePrefix method.

Parameters
defaultPrefix the default namespace prefix, or null to remove the current setting. Specify the empty string ("") to bind no prefix.

public void setIdAttributeNS (Element element, String namespaceURI, String localName)

Registers the element's attribute specified by the namespace URI and local name to be of type ID. The attribute must have a non-empty value.

This implementation uses an internal HashMap to map the attribute's value to the specified element.

Parameters
element the element
namespaceURI the namespace URI of the attribute (specify null if not applicable)
localName the local name of the attribute
Throws
IllegalArgumentException if localName is not an attribute of the specified element or it does not contain a specific value
NullPointerException if element or localName is null

public void setKeySelector (KeySelector ks)

Sets the key selector for finding a key.

Parameters
ks the key selector, or null to remove the current setting

public Object setProperty (String name, Object value)

This implementation uses an internal HashMap to map the name to the specified object.

Parameters
name the name of the property
value the value of the property to be set
Returns
  • the previous value of the specified property, or null if it did not have a value

public void setURIDereferencer (URIDereferencer dereferencer)

Sets a URIDereferencer that is used to dereference URIReferences. The specified URIDereferencer is used in place of an implementation's default URIDereferencer.

Parameters
dereferencer the URIDereferencer, or null to remove any current setting