-
- All Superinterfaces:
- AlgorithmMethod, XMLStructure
- All Known Subinterfaces:
- CanonicalizationMethod
- All Known Implementing Classes:
- TransformService
public interface Transform extends XMLStructure, AlgorithmMethod
A representation of the XMLTransform
element as defined in the W3C Recommendation for XML-Signature Syntax and Processing. The XML Schema Definition is defined as:<element name="Transform" type="ds:TransformType"/> <complexType name="TransformType" mixed="true"> <choice minOccurs="0" maxOccurs="unbounded"> <any namespace="##other" processContents="lax"/> <!-- (1,1) elements from (0,unbounded) namespaces --> <element name="XPath" type="string"/> </choice> <attribute name="Algorithm" type="anyURI" use="required"/> </complexType>
ATransform
instance may be created by invoking thenewTransform
method of theXMLSignatureFactory
class.- Since:
- 1.6
- See Also:
XMLSignatureFactory.newTransform(String, TransformParameterSpec)
-
-
Field Summary
Fields Modifier and Type Field and Description static String
BASE64
The Base64 transform algorithm URI.static String
ENVELOPED
The Enveloped Signature transform algorithm URI.static String
XPATH
The XPath transform algorithm URI.static String
XPATH2
The XPath Filter 2 transform algorithm URI.static String
XSLT
The XSLT transform algorithm URI.
-
Method Summary
Methods Modifier and Type Method and Description AlgorithmParameterSpec
getParameterSpec()
Returns the algorithm-specific input parameters associated with thisTransform
.Data
transform(Data data, XMLCryptoContext context)
Transforms the specified data using the underlying transform algorithm.Data
transform(Data data, XMLCryptoContext context, OutputStream os)
Transforms the specified data using the underlying transform algorithm.-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
Methods inherited from interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
-
-
-
-
Field Detail
-
BASE64
static final String BASE64
The Base64 transform algorithm URI.- See Also:
- Constant Field Values
-
ENVELOPED
static final String ENVELOPED
The Enveloped Signature transform algorithm URI.- See Also:
- Constant Field Values
-
XPATH
static final String XPATH
The XPath transform algorithm URI.- See Also:
- Constant Field Values
-
XPATH2
static final String XPATH2
The XPath Filter 2 transform algorithm URI.- See Also:
- Constant Field Values
-
XSLT
static final String XSLT
The XSLT transform algorithm URI.- See Also:
- Constant Field Values
-
-
Method Detail
-
getParameterSpec
AlgorithmParameterSpec getParameterSpec()
Returns the algorithm-specific input parameters associated with thisTransform
.The returned parameters can be typecast to a
TransformParameterSpec
object.- Specified by:
getParameterSpec
in interfaceAlgorithmMethod
- Returns:
- the algorithm-specific input parameters (may be
null
if not specified)
-
transform
Data transform(Data data, XMLCryptoContext context) throws TransformException
Transforms the specified data using the underlying transform algorithm.- Parameters:
data
- the data to be transformedcontext
- theXMLCryptoContext
containing additional context (may benull
if not applicable)- Returns:
- the transformed data
- Throws:
NullPointerException
- ifdata
isnull
TransformException
- if an error occurs while executing the transform
-
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 anOctetStreamData
, then this method returnsnull
and the bytes are written to the specifiedOutputStream
. Otherwise, theOutputStream
is ignored and the method behaves as iftransform(Data, XMLCryptoContext)
were invoked.- Parameters:
data
- the data to be transformedcontext
- theXMLCryptoContext
containing additional context (may benull
if not applicable)os
- theOutputStream
that should be used to write the transformed data to- Returns:
- the transformed data (or
null
if the data was written to theOutputStream
parameter) - Throws:
NullPointerException
- ifdata
oros
isnull
TransformException
- if an error occurs while executing the transform
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/xml/crypto/dsig/Transform.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.