• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TransformationException类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.xml.security.transforms.TransformationException的典型用法代码示例。如果您正苦于以下问题:Java TransformationException类的具体用法?Java TransformationException怎么用?Java TransformationException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



TransformationException类属于org.apache.xml.security.transforms包,在下文中一共展示了TransformationException类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: enginePerformTransform

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * @inheritDoc
 */
protected XMLSignatureInput enginePerformTransform(
    XMLSignatureInput input, OutputStream os, Transform transformObject
) throws TransformationException {
    /**
     * If the actual input is an octet stream, then the application MUST
     * convert the octet stream to an XPath node-set suitable for use by
     * Canonical XML with Comments. (A subsequent application of the
     * REQUIRED Canonical XML algorithm would strip away these comments.)
     *
     * ...
     *
     * The evaluation of this expression includes all of the document's nodes
     * (including comments) in the node-set representing the octet stream.
     */

    Node signatureElement = transformObject.getElement();

    signatureElement = searchSignatureElement(signatureElement);
    input.setExcludeNode(signatureElement);
    input.addNodeFilter(new EnvelopedNodeFilter(signatureElement));
    return input;
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:26,代码来源:TransformEnvelopedSignature.java


示例2: searchSignatureElement

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * @param signatureElement
 * @return the node that is the signature
 * @throws TransformationException
 */
private static Node searchSignatureElement(Node signatureElement)
    throws TransformationException {
    boolean found = false;

    while (true) {
        if (signatureElement == null
            || signatureElement.getNodeType() == Node.DOCUMENT_NODE) {
            break;
        }
        Element el = (Element) signatureElement;
        if (el.getNamespaceURI().equals(Constants.SignatureSpecNS)
            && el.getLocalName().equals(Constants._TAG_SIGNATURE)) {
            found = true;
            break;
        }

        signatureElement = signatureElement.getParentNode();
    }

    if (!found) {
        throw new TransformationException(
            "transform.envelopedSignatureTransformNotInSignatureElement");
    }
    return signatureElement;
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:31,代码来源:TransformEnvelopedSignature.java


示例3: enginePerformTransform

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * Method enginePerformTransform
 *
 * @param input
 * @return  {@link XMLSignatureInput} as the result of transformation
 * @throws TransformationException
 */
protected XMLSignatureInput enginePerformTransform(
    XMLSignatureInput input, OutputStream os, Transform transformObject
) throws TransformationException {

    Object exArgs[] = { implementedTransformURI };

    throw new TransformationException("signature.Transform.NotYetImplemented", exArgs);
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:16,代码来源:TransformXPointer.java


示例4: createTransforms

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * Creates a Transforms element for a given set of algorithms
 * @param document the target XML document
 * @param algorithmsParametersMarshaller algorithm parameters marshaller
 * @param algorithms algorithms
 * @return the Transforms
 * @throws UnsupportedAlgorithmException if an algorithm is not supported
 */
public static Transforms createTransforms(
        Document document,
        AlgorithmsParametersMarshallingProvider algorithmsParametersMarshaller,
        Iterable<Algorithm> algorithms) throws UnsupportedAlgorithmException
{
    Transforms transforms = new Transforms(document);

    for (Algorithm t : algorithms)
    {
        try
        {
            List<Node> params = algorithmsParametersMarshaller.marshalParameters(t, document);
            if (null == params)
            {
                transforms.addTransform(t.getUri());
            }
            else
            {
                transforms.addTransform(t.getUri(), DOMHelper.nodeList(params));
            }
        }
        catch (TransformationException ex)
        {
            throw new UnsupportedAlgorithmException(
                    "Unsupported transform on XML Signature provider",
                    t.getUri(), ex);
        }
    }
    return transforms;
}
 
开发者ID:luisgoncalves,项目名称:xades4j,代码行数:39,代码来源:TransformUtils.java


示例5: enginePerformTransform

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
protected XMLSignatureInput enginePerformTransform(
        XMLSignatureInput input, OutputStream os, Transform _transformObject)
        throws IOException,
               CanonicalizationException, InvalidCanonicalizerException,
               TransformationException, ParserConfigurationException,
               SAXException {
        return enginePerformTransform(input, _transformObject);
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:12,代码来源:STRTransform.java


示例6: enginePerformTransform

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * Method enginePerformTransform
 * @inheritDoc
 * @param input
 *
 * @throws TransformationException
 */
protected XMLSignatureInput enginePerformTransform(
    XMLSignatureInput input, OutputStream os, Transform transformObject
) throws TransformationException {
    try {
        /**
         * If the actual input is an octet stream, then the application MUST
         * convert the octet stream to an XPath node-set suitable for use by
         * Canonical XML with Comments. (A subsequent application of the
         * REQUIRED Canonical XML algorithm would strip away these comments.)
         *
         * ...
         *
         * The evaluation of this expression includes all of the document's nodes
         * (including comments) in the node-set representing the octet stream.
         */
        Element xpathElement =
            XMLUtils.selectDsNode(
                transformObject.getElement().getFirstChild(), Constants._TAG_XPATH, 0);

        if (xpathElement == null) {
            Object exArgs[] = { "ds:XPath", "Transform" };

            throw new TransformationException("xml.WrongContent", exArgs);
        }
        Node xpathnode = xpathElement.getFirstChild();
        String str = XMLUtils.getStrFromNode(xpathnode);
        input.setNeedsToBeExpanded(needsCircumvent(str));
        if (xpathnode == null) {
            throw new DOMException(
                DOMException.HIERARCHY_REQUEST_ERR, "Text must be in ds:Xpath"
            );
        }

        XPathFactory xpathFactory = XPathFactory.newInstance();
        XPathAPI xpathAPIInstance = xpathFactory.newXPathAPI();
        input.addNodeFilter(new XPathNodeFilter(xpathElement, xpathnode, str, xpathAPIInstance));
        input.setNodeSet(true);
        return input;
    } catch (DOMException ex) {
        throw new TransformationException(ex);
    }
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:50,代码来源:TransformXPath.java


示例7: TransformsImpl

import org.apache.xml.security.transforms.TransformationException; //导入依赖的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


示例8: enginePerformTransform

import org.apache.xml.security.transforms.TransformationException; //导入依赖的package包/类
/**
 * Method enginePerformTransform
 *
 * @param input
 * @return {@link XMLSignatureInput} as the result of transformation
 * @inheritDoc
 * @throws CanonicalizationException
 * @throws IOException
 * @throws TransformationException
 */
protected XMLSignatureInput enginePerformTransform(
    XMLSignatureInput input, Transform transformObject
) throws IOException, CanonicalizationException, TransformationException {
    return enginePerformTransform(input, null, transformObject);
}
 
开发者ID:Legostaev,项目名称:xmlsec-gost,代码行数:16,代码来源:TransformBase64Decode.java


示例9: getTransforms

import org.apache.xml.security.transforms.TransformationException; //导入依赖的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


示例10: TransformsImpl

import org.apache.xml.security.transforms.TransformationException; //导入依赖的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.TransformationException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java XMLObjectBuilderFactory类代码示例发布时间:2022-05-22
下一篇:
Java ContainerOpenPacket类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap