FileDocCategorySizeDatePackage
TransformService.javaAPI DocJava SE 6 API15382Tue Jun 10 00:27:06 BST 2008javax.xml.crypto.dsig

TransformService

public abstract class TransformService extends Object implements Transform
A Service Provider Interface for transform and canonicalization algorithms.

Each instance of TransformService supports a specific transform or canonicalization algorithm and XML mechanism type. To create a TransformService, call one of the static {@link #getInstance getInstance} methods, passing in the algorithm URI and XML mechanism type desired, for example:

TransformService ts = TransformService.getInstance(Transform.XPATH2, "DOM");

TransformService implementations are registered and loaded using the {@link java.security.Provider} mechanism. Each TransformService service provider implementation should include a MechanismType service attribute that identifies the XML mechanism type that it supports. If the attribute is not specified, "DOM" is assumed. For example, a service provider that supports the XPath Filter 2 Transform and DOM mechanism would be specified in the Provider subclass as:

put("TransformService." + Transform.XPATH2,
"org.example.XPath2TransformService");
put("TransformService." + Transform.XPATH2 + " MechanismType", "DOM");
TransformService implementations that support the DOM mechanism type must abide by the DOM interoperability requirements defined in the DOM Mechanism Requirements section of the API overview. See the Service Providers section of the API overview for a list of standard mechanism types.

Once a TransformService has been created, it can be used to process Transform or CanonicalizationMethod objects. If the Transform or CanonicalizationMethod exists in XML form (for example, when validating an existing XMLSignature), the {@link #init(XMLStructure, XMLCryptoContext)} method must be first called to initialize the transform and provide document context (even if there are no parameters). Alternatively, if the Transform or CanonicalizationMethod is being created from scratch, the {@link #init(TransformParameterSpec)} method is called to initialize the transform with parameters and the {@link #marshalParams marshalParams} method is called to marshal the parameters to XML and provide the transform with document context. Finally, the {@link #transform transform} method is called to perform the transformation.

Concurrent Access

The static methods of this class are guaranteed to be thread-safe. Multiple threads may concurrently invoke the static methods defined in this class with no ill effects.

However, this is not true for the non-static methods defined by this class. Unless otherwise documented by a specific provider, threads that need to access a single TransformService instance concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating a different TransformService instance need not synchronize.

author
Sean Mullan
author
JSR 105 Expert Group
since
1.6

Fields Summary
private String
algorithm
private String
mechanism
private Provider
provider
Constructors Summary
protected TransformService()
Default constructor, for invocation by subclasses.

Methods Summary
public final java.lang.StringgetAlgorithm()
Returns the URI of the algorithm supported by this TransformService.

return
the algorithm URI

	return algorithm;
    
public static javax.xml.crypto.dsig.TransformServicegetInstance(java.lang.String algorithm, java.lang.String mechanismType)
Returns a TransformService that supports the specified algorithm URI (ex: {@link Transform#XPATH2}) and mechanism type (ex: DOM).

This method uses the standard JCA provider lookup mechanism to locate and instantiate a TransformService implementation of the desired algorithm and MechanismType service attribute. It traverses the list of registered security Providers, starting with the most preferred Provider. A new TransformService object from the first Provider that supports the specified algorithm and mechanism type is returned.

Note that the list of registered providers may be retrieved via the {@link Security#getProviders() Security.getProviders()} method.

param
algorithm the URI of the algorithm
param
mechanismType the type of the XML processing mechanism and representation
return
a new TransformService
throws
NullPointerException if algorithm or mechanismType is null
throws
NoSuchAlgorithmException if no Provider supports a TransformService implementation for the specified algorithm and mechanism type
see
Provider

	if (mechanismType == null || algorithm == null) {
	    throw new NullPointerException();
	}
	boolean dom = false;
	if (mechanismType.equals("DOM")) {
	    dom = true;
	}
        List services = GetInstance.getServices("TransformService", algorithm);
        for (Iterator t = services.iterator(); t.hasNext(); ) {
            Service s = (Service)t.next();
	    String value = s.getAttribute("MechanismType");
	    if ((value == null && dom) || 
		(value != null && value.equals(mechanismType))) {
                Instance instance = GetInstance.getInstance(s, null);
        	TransformService ts = (TransformService) instance.impl;
        	ts.algorithm = algorithm;
        	ts.mechanism = mechanismType;
        	ts.provider = instance.provider;
        	return ts;
	    }
        }
        throw new NoSuchAlgorithmException
            (algorithm + " algorithm and " + mechanismType 
		 + " mechanism not available");
    
public static javax.xml.crypto.dsig.TransformServicegetInstance(java.lang.String algorithm, java.lang.String mechanismType, java.security.Provider provider)
Returns a TransformService that supports the specified algorithm URI (ex: {@link Transform#XPATH2}) and mechanism type (ex: DOM) as supplied by the specified provider. Note that the specified Provider object does not have to be registered in the provider list.

param
algorithm the URI of the algorithm
param
mechanismType the type of the XML processing mechanism and representation
param
provider the Provider object
return
a new TransformService
throws
NullPointerException if provider, algorithm, or mechanismType is null
throws
NoSuchAlgorithmException if a TransformService implementation for the specified algorithm and mechanism type is not available from the specified Provider object
see
Provider

	if (mechanismType == null || algorithm == null || provider == null) {
	    throw new NullPointerException();
	}

	boolean dom = false;
	if (mechanismType.equals("DOM")) {
	    dom = true;
	}
        Service s = GetInstance.getService
            ("TransformService", algorithm, provider);
        String value = s.getAttribute("MechanismType");
        if ((value == null && dom) || 
	    (value != null && value.equals(mechanismType))) {
            Instance instance = GetInstance.getInstance(s, null);
            TransformService ts = (TransformService) instance.impl;
            ts.algorithm = algorithm;
            ts.mechanism = mechanismType;
            ts.provider = instance.provider;
            return ts;
	}
        throw new NoSuchAlgorithmException
            (algorithm + " algorithm and " + mechanismType 
		 + " mechanism not available");
    
public static javax.xml.crypto.dsig.TransformServicegetInstance(java.lang.String algorithm, java.lang.String mechanismType, java.lang.String provider)
Returns a TransformService that supports the specified algorithm URI (ex: {@link Transform#XPATH2}) and mechanism type (ex: DOM) as supplied by the specified provider. The specified provider must be registered in the security provider list.

Note that the list of registered providers may be retrieved via the {@link Security#getProviders() Security.getProviders()} method.

param
algorithm the URI of the algorithm
param
mechanismType the type of the XML processing mechanism and representation
param
provider the string name of the provider
return
a new TransformService
throws
NoSuchProviderException if the specified provider is not registered in the security provider list
throws
NullPointerException if provider, mechanismType, or algorithm is null
throws
NoSuchAlgorithmException if a TransformService implementation for the specified algorithm and mechanism type is not available from the specified provider
see
Provider

	if (mechanismType == null || algorithm == null || provider == null) {
	    throw new NullPointerException();
	} else if (provider.length() == 0) {
	    throw new NoSuchProviderException();
	}
	boolean dom = false;
	if (mechanismType.equals("DOM")) {
	    dom = true;
	}
        Service s = GetInstance.getService
            ("TransformService", algorithm, provider);
        String value = s.getAttribute("MechanismType");
        if ((value == null && dom) || 
	    (value != null && value.equals(mechanismType))) {
            Instance instance = GetInstance.getInstance(s, null);
            TransformService ts = (TransformService) instance.impl;
            ts.algorithm = algorithm;
            ts.mechanism = mechanismType;
            ts.provider = instance.provider;
            return ts;
	}
        throw new NoSuchAlgorithmException
            (algorithm + " algorithm and " + mechanismType 
		 + " mechanism not available");
    
public final java.lang.StringgetMechanismType()
Returns the mechanism type supported by this TransformService.

return
the mechanism type

	return mechanism;
    
public final java.security.ProvidergetProvider()
Returns the provider of this TransformService.

return
the provider

	return provider;
    
public abstract voidinit(javax.xml.crypto.XMLStructure parent, javax.xml.crypto.XMLCryptoContext context)
Initializes this TransformService with the specified parameters and document context.

param
parent a mechanism-specific structure containing the parent structure
param
context the XMLCryptoContext containing additional context (may be null if not applicable)
throws
ClassCastException if the type of parent or context is not compatible with this TransformService
throws
NullPointerException if parent is null
throws
InvalidAlgorithmParameterException if the specified parameters are invalid for this algorithm

public abstract voidinit(javax.xml.crypto.dsig.spec.TransformParameterSpec params)
Initializes this TransformService with the specified parameters.

If the parameters exist in XML form, the {@link #init(XMLStructure, XMLCryptoContext)} method should be used to initialize the TransformService.

param
params the algorithm parameters (may be null if not required or optional)
throws
InvalidAlgorithmParameterException if the specified parameters are invalid for this algorithm

public abstract voidmarshalParams(javax.xml.crypto.XMLStructure parent, javax.xml.crypto.XMLCryptoContext context)
Marshals the algorithm-specific parameters. If there are no parameters to be marshalled, this method returns without throwing an exception.

param
parent a mechanism-specific structure containing the parent node that the marshalled parameters should be appended to
param
context the XMLCryptoContext containing additional context (may be null if not applicable)
throws
ClassCastException if the type of parent or context is not compatible with this TransformService
throws
NullPointerException if parent is null
throws
MarshalException if the parameters cannot be marshalled