Class JAXBCryptoContext

    • Constructor Detail

      • JAXBCryptoContext

        public JAXBCryptoContext()
        Creates a new instance of JAXBCryptoContext
    • Method Detail

      • setKeySelector

        public void setKeySelector​(KeySelector keySelector)
        Sets the key selector for finding a key.
        Specified by:
        setKeySelector in interface XMLCryptoContext
        Parameters:
        keySelector - the key selector, or null to remove the current setting
        See Also:
        getKeySelector()
      • setURIDereferencer

        public void setURIDereferencer​(URIDereferencer uriDereferencer)
        Sets a URIDereferencer that is used to dereference URIDereferencers. The specified URIDereferencer is used in place of an implementation's default URIDereferencer.
        Specified by:
        setURIDereferencer in interface XMLCryptoContext
        Parameters:
        uriDereferencer - the URIDereferencer, or null to remove any current setting
        See Also:
        getURIDereferencer()
      • getNamespacePrefix

        public 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 method.
        Specified by:
        getNamespacePrefix in interface XMLCryptoContext
        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 - if namespaceURI is null
        See Also:
        putNamespacePrefix(String, String)
      • putNamespacePrefix

        public 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.
        Specified by:
        putNamespacePrefix in interface XMLCryptoContext
        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 - if namespaceURI is null
        See Also:
        getNamespacePrefix(String, String)
      • setDefaultNamespacePrefix

        public void setDefaultNamespacePrefix​(String defaultNamespacePrefix)
        Sets the default namespace prefix. This sets the namespace prefix for all namespace URIs not explicitly set by the putNamespacePrefix method.
        Specified by:
        setDefaultNamespacePrefix in interface XMLCryptoContext
        Parameters:
        defaultNamespacePrefix - the default namespace prefix, or null to remove the current setting. Specify the empty string ("") to bind no prefix.
        See Also:
        getDefaultNamespacePrefix()
      • get

        public Object get​(Object key)
        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.

        Specified by:
        get in interface XMLCryptoContext
        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
        See Also:
        put(Object, Object)
      • put

        public 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.

        Specified by:
        put in interface XMLCryptoContext
        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 - if some aspect of this key or value prevents it from being stored in this context
        See Also:
        get(Object)