Class JAXBCryptoContext
java.lang.Object
com.sun.xml.ws.security.opt.crypto.jaxb.JAXBCryptoContext
- All Implemented Interfaces:
XMLCryptoContext
- Direct Known Subclasses:
JAXBSignContext,JAXBValidateContext
- Author:
- Abhijit Das
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value to which this context maps the specified key.Returns the base URI.Returns the default namespace prefix.Returns the key selector for finding a key.getNamespacePrefix(String namespaceURI, String defaultPrefix) Returns the namespace prefix that the specified namespace URI is associated with.getProperty(String name) Returns the value of the specified property.Returns aURIDereferencerthat is used to dereferenceURIDereferencers.Associates the specified value with the specified key in this context.putNamespacePrefix(String namespaceURI, String prefix) Maps the specified namespace URI to the specified prefix.voidsetBaseURI(String baseURI) Sets the base URI.voidsetDefaultNamespacePrefix(String defaultNamespacePrefix) Sets the default namespace prefix.voidsetKeySelector(KeySelector keySelector) Sets the key selector for finding a key.setProperty(String name, Object value) Sets the specified property.voidsetURIDereferencer(URIDereferencer uriDereferencer) Sets aURIDereferencerthat is used to dereferenceURIDereferencers.
-
Constructor Details
-
JAXBCryptoContext
public JAXBCryptoContext()Creates a new instance of JAXBCryptoContext
-
-
Method Details
-
getBaseURI
Returns the base URI.- Specified by:
getBaseURIin interfaceXMLCryptoContext- Returns:
- the base URI, or
nullif not specified - See Also:
-
setBaseURI
Sets the base URI.- Specified by:
setBaseURIin interfaceXMLCryptoContext- Parameters:
baseURI- the base URI, ornullto remove current value- Throws:
IllegalArgumentException- ifbaseURIis not RFC 2396 compliant- See Also:
-
getKeySelector
Returns the key selector for finding a key.- Specified by:
getKeySelectorin interfaceXMLCryptoContext- Returns:
- the key selector, or
nullif not specified - See Also:
-
setKeySelector
Sets the key selector for finding a key.- Specified by:
setKeySelectorin interfaceXMLCryptoContext- Parameters:
keySelector- the key selector, ornullto remove the current setting- See Also:
-
getURIDereferencer
Returns aURIDereferencerthat is used to dereferenceURIDereferencers.- Specified by:
getURIDereferencerin interfaceXMLCryptoContext- Returns:
- the
URIDereferencer, ornullif not specified - See Also:
-
setURIDereferencer
Sets aURIDereferencerthat is used to dereferenceURIDereferencers. The specifiedURIDereferenceris used in place of an implementation's defaultURIDereferencer.- Specified by:
setURIDereferencerin interfaceXMLCryptoContext- Parameters:
uriDereferencer- theURIDereferencer, ornullto remove any current setting- See Also:
-
getNamespacePrefix
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 theputNamespacePrefixmethod.- Specified by:
getNamespacePrefixin interfaceXMLCryptoContext- Parameters:
namespaceURI- a namespace URIdefaultPrefix- 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
defaultPrefixif the URI is not registered. If the namespace URI is registered but has no prefix, an empty string ("") is returned. - Throws:
NullPointerException- ifnamespaceURIisnull- See Also:
-
putNamespacePrefix
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.- Specified by:
putNamespacePrefixin interfaceXMLCryptoContext- Parameters:
namespaceURI- a namespace URIprefix- a namespace prefix (ornullto 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
nullif there was none - Throws:
NullPointerException- ifnamespaceURIisnull- See Also:
-
getDefaultNamespacePrefix
Returns the default namespace prefix. The default namespace prefix is the prefix for all namespace URIs not explicitly set by theputNamespacePrefixmethod.- Specified by:
getDefaultNamespacePrefixin interfaceXMLCryptoContext- Returns:
- the default namespace prefix, or
nullif none has been set. - See Also:
-
setDefaultNamespacePrefix
Sets the default namespace prefix. This sets the namespace prefix for all namespace URIs not explicitly set by theputNamespacePrefixmethod.- Specified by:
setDefaultNamespacePrefixin interfaceXMLCryptoContext- Parameters:
defaultNamespacePrefix- the default namespace prefix, ornullto remove the current setting. Specify the empty string ("") to bind no prefix.- See Also:
-
setProperty
Sets the specified property.- Specified by:
setPropertyin interfaceXMLCryptoContext- Parameters:
name- the name of the propertyvalue- the value of the property to be set- Returns:
- the previous value of the specified property, or
nullif it did not have a value - Throws:
NullPointerException- ifnameisnull- See Also:
-
getProperty
Returns the value of the specified property.- Specified by:
getPropertyin interfaceXMLCryptoContext- Parameters:
name- the name of the property- Returns:
- the current value of the specified property, or
nullif it does not have a value - Throws:
NullPointerException- ifnameisnull- See Also:
-
get
Returns the value to which this context maps the specified key.More formally, if this context contains a mapping from a key
kto a valuevsuch that(key==null ? k==null : key.equals(k)), then this method returnsv; otherwise it returnsnull. (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.
- Specified by:
getin interfaceXMLCryptoContext- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which this context maps the specified key, or
nullif there is no mapping for the key - See Also:
-
put
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.
- Specified by:
putin interfaceXMLCryptoContext- Parameters:
key- key with which the specified value is to be associated withvalue- value to be associated with the specified key- Returns:
- the previous value associated with the key, or
nullif there was no mapping for the key - Throws:
IllegalArgumentException- if some aspect of this key or value prevents it from being stored in this context- See Also:
-