本文整理汇总了Java中org.apache.xml.security.transforms.InvalidTransformException类的典型用法代码示例。如果您正苦于以下问题:Java InvalidTransformException类的具体用法?Java InvalidTransformException怎么用?Java InvalidTransformException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
InvalidTransformException类属于org.apache.xml.security.transforms包,在下文中一共展示了InvalidTransformException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createTransform
import org.apache.xml.security.transforms.InvalidTransformException; //导入依赖的package包/类
/**
* Creates a Transform element for a given algorithm.
* @param algorithm algorithm
* @param parametersMarshallingProvider algorithm parameters marshaller
* @param document the target XML document
* @return the Transform
* @throws UnsupportedAlgorithmException if the algorithm is not supported
*/
public static Transform createTransform(Algorithm algorithm, AlgorithmsParametersMarshallingProvider parametersMarshallingProvider, Document document) throws UnsupportedAlgorithmException
{
List<Node> params = parametersMarshallingProvider.marshalParameters(algorithm, document);
try
{
if (null == params)
{
return new Transform(document, algorithm.getUri());
}
else
{
return new Transform(document, algorithm.getUri(), DOMHelper.nodeList(params));
}
}
catch (InvalidTransformException ex)
{
throw new UnsupportedAlgorithmException("C14N algorithm not supported in the XML Signature provider", algorithm.getUri(), ex);
}
}
示例2: TransformsImpl
import org.apache.xml.security.transforms.InvalidTransformException; //导入依赖的package包/类
/**
*
* @param element
* @throws XMLSignatureException
* @throws InvalidTransformException
* @throws XMLSecurityException
* @throws TransformationException
*/
public TransformsImpl(Element element)
throws XMLSignatureException, InvalidTransformException,
XMLSecurityException, TransformationException {
super(element, "");
}
示例3: getTransforms
import org.apache.xml.security.transforms.InvalidTransformException; //导入依赖的package包/类
/**
* Method getTransforms
*
* @return The transforms that applied this reference.
* @throws InvalidTransformException
* @throws TransformationException
* @throws XMLSecurityException
* @throws XMLSignatureException
*/
public Transforms getTransforms()
throws XMLSignatureException, InvalidTransformException,
TransformationException, XMLSecurityException {
return transforms;
}
示例4: TransformsImpl
import org.apache.xml.security.transforms.InvalidTransformException; //导入依赖的package包/类
/**
*
* @param element
* @throws XMLSignatureException
* @throws InvalidTransformException
* @throws XMLSecurityException
* @throws TransformationException
*/
public TransformsImpl(Element element)
throws XMLSignatureException, InvalidTransformException,
XMLSecurityException, TransformationException {
super(element, "");
}