XMLCryptoContext (Java Platform SE 6) (original) (raw)
javax.xml.crypto
Interface XMLCryptoContext
All Known Subinterfaces:
XMLSignContext, XMLValidateContext
All Known Implementing Classes:
DOMCryptoContext, DOMSignContext, DOMValidateContext
public interface XMLCryptoContext
Contains common context information for XML cryptographic operations.
This interface contains methods for setting and retrieving properties that affect the processing of XML signatures or XML encrypted structures.
Note that XMLCryptoContext
instances can contain information and state specific to the XML cryptographic structure it is used with. The results are unpredictable if an XMLCryptoContext
is used with multiple structures (for example, you should not use the same XMLValidateContext instance to validate two different XMLSignature objects).
Since:
1.6
Method Summary | |
---|---|
Object | get(Object key) Returns the value to which this context maps the specified key. |
String | getBaseURI() Returns the base URI. |
String | getDefaultNamespacePrefix() Returns the default namespace prefix. |
KeySelector | getKeySelector() Returns the key selector for finding a key. |
String | [getNamespacePrefix](../../../javax/xml/crypto/XMLCryptoContext.html#getNamespacePrefix%28java.lang.String, java.lang.String%29)(String namespaceURI,String defaultPrefix) Returns the namespace prefix that the specified namespace URI is associated with. |
Object | getProperty(String name) Returns the value of the specified property. |
URIDereferencer | getURIDereferencer() Returns a URIDereferencer that is used to dereferenceURIReferences. |
Object | [put](../../../javax/xml/crypto/XMLCryptoContext.html#put%28java.lang.Object, java.lang.Object%29)(Object key,Object value) Associates the specified value with the specified key in this context. |
String | [putNamespacePrefix](../../../javax/xml/crypto/XMLCryptoContext.html#putNamespacePrefix%28java.lang.String, java.lang.String%29)(String namespaceURI,String prefix) Maps the specified namespace URI to the specified prefix. |
void | setBaseURI(String baseURI) Sets the base URI. |
void | setDefaultNamespacePrefix(String defaultPrefix) Sets the default namespace prefix. |
void | setKeySelector(KeySelector ks) Sets the key selector for finding a key. |
Object | [setProperty](../../../javax/xml/crypto/XMLCryptoContext.html#setProperty%28java.lang.String, java.lang.Object%29)(String name,Object value) Sets the specified property. |
void | setURIDereferencer(URIDereferencer dereferencer) Sets a URIDereferencer that is used to dereferenceURIReferences. |
Method Detail |
---|
getBaseURI
String getBaseURI()
Returns the base URI.
Returns:
the base URI, or null
if not specified
See Also:
setBaseURI
void setBaseURI(String baseURI)
Sets the base URI.
Parameters:
baseURI
- the base URI, or null
to remove current value
Throws:
[IllegalArgumentException](../../../java/lang/IllegalArgumentException.html "class in java.lang")
- if baseURI
is not RFC 2396 compliant
See Also:
getKeySelector
KeySelector getKeySelector()
Returns the key selector for finding a key.
Returns:
the key selector, or null
if not specified
See Also:
setKeySelector
void setKeySelector(KeySelector ks)
Sets the key selector for finding a key.
Parameters:
ks
- the key selector, or null
to remove the current setting
See Also:
getURIDereferencer
URIDereferencer getURIDereferencer()
Returns a URIDereferencer
that is used to dereferenceURIReferences.
Returns:
the URIDereferencer
, or null
if not specified
See Also:
setURIDereferencer(URIDereferencer)
setURIDereferencer
void setURIDereferencer(URIDereferencer dereferencer)
Sets a URIDereferencer
that is used to dereferenceURIReferences. The specified URIDereferencer
is used in place of an implementation's default URIDereferencer
.
Parameters:
dereferencer
- the URIDereferencer
, or null
to remove any current setting
See Also:
getNamespacePrefix
String getNamespacePrefix(String namespaceURI, String defaultPrefix)
Returns the namespace prefix that the specified namespace URI is associated with. Returns the specified default prefix if the specified namespace URI has not been bound to a prefix. To bind a namespace URI to a prefix, call the [putNamespacePrefix](../../../javax/xml/crypto/XMLCryptoContext.html#putNamespacePrefix%28java.lang.String, java.lang.String%29) method.
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.
Throws:
[NullPointerException](../../../java/lang/NullPointerException.html "class in java.lang")
- if namespaceURI
isnull
See Also:
[putNamespacePrefix(String, String)](../../../javax/xml/crypto/XMLCryptoContext.html#putNamespacePrefix%28java.lang.String, java.lang.String%29)
putNamespacePrefix
String putNamespacePrefix(String namespaceURI, String prefix)
Maps the specified namespace URI to the specified prefix. If there is already a prefix associated with the specified namespace URI, the old prefix is replaced by 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
Throws:
[NullPointerException](../../../java/lang/NullPointerException.html "class in java.lang")
- if namespaceURI
isnull
See Also:
[getNamespacePrefix(String, String)](../../../javax/xml/crypto/XMLCryptoContext.html#getNamespacePrefix%28java.lang.String, java.lang.String%29)
getDefaultNamespacePrefix
String getDefaultNamespacePrefix()
Returns the default namespace prefix. The default namespace prefix is the prefix for all namespace URIs not explicitly set by the[putNamespacePrefix](../../../javax/xml/crypto/XMLCryptoContext.html#putNamespacePrefix%28java.lang.String, java.lang.String%29) method.
Returns:
the default namespace prefix, or null
if none has been set.
See Also:
setDefaultNamespacePrefix(String)
setDefaultNamespacePrefix
void setDefaultNamespacePrefix(String defaultPrefix)
Sets the default namespace prefix. This sets the namespace prefix for all namespace URIs not explicitly set by the [putNamespacePrefix](../../../javax/xml/crypto/XMLCryptoContext.html#putNamespacePrefix%28java.lang.String, java.lang.String%29) method.
Parameters:
defaultPrefix
- the default namespace prefix, or null
to remove the current setting. Specify the empty string (""
) to bind no prefix.
See Also:
setProperty
Object setProperty(String name, Object value)
Sets the specified property.
Parameters:
name
- the name of the property
value
- the value of the property to be set
Returns:
the previous value of the specified property, ornull
if it did not have a value
Throws:
[NullPointerException](../../../java/lang/NullPointerException.html "class in java.lang")
- if name
is null
See Also:
getProperty
Object getProperty(String name)
Returns the value of the specified property.
Parameters:
name
- the name of the property
Returns:
the current value of the specified property, ornull
if it does not have a value
Throws:
[NullPointerException](../../../java/lang/NullPointerException.html "class in java.lang")
- if name
is null
See Also:
[setProperty(String, Object)](../../../javax/xml/crypto/XMLCryptoContext.html#setProperty%28java.lang.String, java.lang.Object%29)
get
Returns the value to which this context maps the specified key.
More formally, if this context contains a mapping from a key k
to a value v
such that (key==null ? k==null : key.equals(k))
, then this method returns v
; otherwise it returns null
. (There can be at most one such mapping.)
This method is useful for retrieving arbitrary information that is specific to the cryptographic operation that this context is used for.
Parameters:
key
- the key whose associated value is to be returned
Returns:
the value to which this context maps the specified key, ornull
if there is no mapping for the key
See Also:
[put(Object, Object)](../../../javax/xml/crypto/XMLCryptoContext.html#put%28java.lang.Object, java.lang.Object%29)
put
Object put(Object key, Object value)
Associates the specified value with the specified key in this context. If the context previously contained a mapping for this key, the old value is replaced by the specified value.
This method is useful for storing arbitrary information that is specific to the cryptographic operation that this context is used for.
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
Throws:
[IllegalArgumentException](../../../java/lang/IllegalArgumentException.html "class in java.lang")
- if some aspect of this key or value prevents it from being stored in this context
See Also:
Submit a bug or feature
For further API reference and developer documentation, see Java SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2015, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
Scripting on this page tracks web page traffic, but does not change the content in any way.