Interface DSSTransform
-
- All Known Implementing Classes:
AbstractTransform,Base64Transform,CanonicalizationTransform,ComplexTransform,EnvelopedSignatureTransform,XPath2FilterEnvelopedSignatureTransform,XPath2FilterTransform,XPathEnvelopedSignatureTransform,XPathTransform,XsltTransform
public interface DSSTransform
-
-
Method Summary
Modifier and Type Method Description ElementcreateTransform(Document document, Element parentNode)Creates a Transform element DOM and appends it to theparentNodeStringgetAlgorithm()Returns a particular transformation algorithm namebyte[]getBytesAfterTranformation(Node node)Performs transformation on the givennodeand returns resulting bytesvoidsetNamespace(String namespace)Specifies a namespace for the transformation elements
-
-
-
Method Detail
-
getAlgorithm
String getAlgorithm()
Returns a particular transformation algorithm name- Returns:
Stringalgorithm name of transformation
-
setNamespace
void setNamespace(String namespace)
Specifies a namespace for the transformation elements- Parameters:
namespace-Stringuri
-
getBytesAfterTranformation
byte[] getBytesAfterTranformation(Node node)
Performs transformation on the givennodeand returns resulting bytes- Parameters:
node-Nodeto perform transformation on- Returns:
- byte array
-
-