当前位置: 首页>>代码示例>>Java>>正文


Java InvalidTransformException类代码示例

本文整理汇总了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);
    }
}
 
开发者ID:luisgoncalves,项目名称:xades4j,代码行数:28,代码来源:TransformUtils.java

示例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, "");
}
 
开发者ID:williamgrosset,项目名称:OSCAR-ConCert,代码行数:14,代码来源:XMLCipher.java

示例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;
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:15,代码来源:Reference.java

示例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, "");
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:14,代码来源:XMLCipher.java


注:本文中的org.apache.xml.security.transforms.InvalidTransformException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。