Package Summary  Overview Summary

class:Transform [NONE]

field:BASE64 [NONE]

field:ENVELOPED [NONE]

field:XPATH [NONE]

field:XPATH2 [NONE]

field:XSLT [NONE]

method:getParameterSpec() [NONE]

method:transform(javax.xml.crypto.Data,javax.xml.crypto.XMLCryptoContext) [NONE]

  • transform

    Data transform​(Data data,
                   XMLCryptoContext context)
            throws TransformException
    
    Transforms the specified data using the underlying transform algorithm.
    Parameters:
    data - the data to be transformed
    context - the XMLCryptoContext containing additional context (may be null if not applicable)
    Returns:
    the transformed data
    Throws:
    NullPointerException - if data is null
    TransformException - if an error occurs while executing the transform

method:transform(javax.xml.crypto.Data,javax.xml.crypto.XMLCryptoContext,java.io.OutputStream) [NONE]

  • transform

    Data transform​(Data data,
                   XMLCryptoContext context,
                   OutputStream os)
            throws TransformException
    
    Transforms the specified data using the underlying transform algorithm. If the output of this transform is an OctetStreamData, then this method returns null and the bytes are written to the specified OutputStream. Otherwise, the OutputStream is ignored and the method behaves as if transform(Data, XMLCryptoContext) were invoked.
    Parameters:
    data - the data to be transformed
    context - the XMLCryptoContext containing additional context (may be null if not applicable)
    os - the OutputStream that should be used to write the transformed data to
    Returns:
    the transformed data (or null if the data was written to the OutputStream parameter)
    Throws:
    NullPointerException - if data or os is null
    TransformException - if an error occurs while executing the transform

© 2019 Oracle Corporation and/or its affiliates