Package org.apache.xml.security.stax.ext
Interface Transformer
-
- All Known Implementing Classes:
Canonicalizer11
,Canonicalizer11_OmitCommentsTransformer
,Canonicalizer11_WithCommentsTransformer
,Canonicalizer20010315
,Canonicalizer20010315_Excl
,Canonicalizer20010315_ExclOmitCommentsTransformer
,Canonicalizer20010315_ExclWithCommentsTransformer
,Canonicalizer20010315_OmitCommentsTransformer
,Canonicalizer20010315_WithCommentsTransformer
,CanonicalizerBase
,TransformBase64Decode
,TransformEnvelopedSignature
,TransformIdentity
public interface Transformer
- Version:
- $Revision: 1540770 $ $Date: 2013-11-11 17:50:50 +0100 (Mon, 11 Nov 2013) $
- Author:
- $Author: coheigea $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
doFinal()
XMLSecurityConstants.TransformMethod
getPreferredTransformMethod(XMLSecurityConstants.TransformMethod forInput)
void
setOutputStream(OutputStream outputStream)
void
setProperties(Map<String,Object> properties)
void
setTransformer(Transformer transformer)
void
transform(InputStream inputStream)
void
transform(XMLSecEvent xmlSecEvent)
-
-
-
Method Detail
-
setOutputStream
void setOutputStream(OutputStream outputStream) throws XMLSecurityException
- Throws:
XMLSecurityException
-
setTransformer
void setTransformer(Transformer transformer) throws XMLSecurityException
- Throws:
XMLSecurityException
-
setProperties
void setProperties(Map<String,Object> properties) throws XMLSecurityException
- Throws:
XMLSecurityException
-
getPreferredTransformMethod
XMLSecurityConstants.TransformMethod getPreferredTransformMethod(XMLSecurityConstants.TransformMethod forInput)
-
transform
void transform(XMLSecEvent xmlSecEvent) throws XMLStreamException
- Throws:
XMLStreamException
-
transform
void transform(InputStream inputStream) throws XMLStreamException
- Throws:
XMLStreamException
-
doFinal
void doFinal() throws XMLStreamException
- Throws:
XMLStreamException
-
-