Search in sources :

Example 6 with XPathType

use of javax.xml.crypto.dsig.spec.XPathType in project jdk8u_jdk by JetBrains.

the class DOMXPathFilter2Transform method unmarshalParams.

private void unmarshalParams(Element curXPathElem) throws MarshalException {
    List<XPathType> list = new ArrayList<XPathType>();
    while (curXPathElem != null) {
        String xPath = curXPathElem.getFirstChild().getNodeValue();
        String filterVal = DOMUtils.getAttributeValue(curXPathElem, "Filter");
        if (filterVal == null) {
            throw new MarshalException("filter cannot be null");
        }
        XPathType.Filter filter = null;
        if (filterVal.equals("intersect")) {
            filter = XPathType.Filter.INTERSECT;
        } else if (filterVal.equals("subtract")) {
            filter = XPathType.Filter.SUBTRACT;
        } else if (filterVal.equals("union")) {
            filter = XPathType.Filter.UNION;
        } else {
            throw new MarshalException("Unknown XPathType filter type" + filterVal);
        }
        NamedNodeMap attributes = curXPathElem.getAttributes();
        if (attributes != null) {
            int length = attributes.getLength();
            Map<String, String> namespaceMap = new HashMap<String, String>(length);
            for (int i = 0; i < length; i++) {
                Attr attr = (Attr) attributes.item(i);
                String prefix = attr.getPrefix();
                if (prefix != null && prefix.equals("xmlns")) {
                    namespaceMap.put(attr.getLocalName(), attr.getValue());
                }
            }
            list.add(new XPathType(xPath, filter, namespaceMap));
        } else {
            list.add(new XPathType(xPath, filter));
        }
        curXPathElem = DOMUtils.getNextSiblingElement(curXPathElem);
    }
    this.params = new XPathFilter2ParameterSpec(list);
}
Also used : XPathType(javax.xml.crypto.dsig.spec.XPathType) NamedNodeMap(org.w3c.dom.NamedNodeMap) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) Attr(org.w3c.dom.Attr) XPathFilter2ParameterSpec(javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec)

Example 7 with XPathType

use of javax.xml.crypto.dsig.spec.XPathType in project santuario-java by apache.

the class DOMXPathFilter2Transform method marshalParams.

@Override
public void marshalParams(XMLStructure parent, XMLCryptoContext context) throws MarshalException {
    super.marshalParams(parent, context);
    XPathFilter2ParameterSpec xp = (XPathFilter2ParameterSpec) getParameterSpec();
    String prefix = DOMUtils.getNSPrefix(context, Transform.XPATH2);
    String qname = prefix == null || prefix.length() == 0 ? "xmlns" : "xmlns:" + prefix;
    @SuppressWarnings("unchecked") List<XPathType> xpathList = xp.getXPathList();
    for (XPathType xpathType : xpathList) {
        Element elem = DOMUtils.createElement(ownerDoc, "XPath", Transform.XPATH2, prefix);
        elem.appendChild(ownerDoc.createTextNode(xpathType.getExpression()));
        DOMUtils.setAttribute(elem, "Filter", xpathType.getFilter().toString());
        elem.setAttributeNS("http://www.w3.org/2000/xmlns/", qname, Transform.XPATH2);
        // add namespace attributes, if necessary
        @SuppressWarnings("unchecked") Set<Map.Entry<String, String>> entries = xpathType.getNamespaceMap().entrySet();
        for (Map.Entry<String, String> entry : entries) {
            elem.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:" + entry.getKey(), entry.getValue());
        }
        transformElem.appendChild(elem);
    }
}
Also used : XPathType(javax.xml.crypto.dsig.spec.XPathType) Element(org.w3c.dom.Element) HashMap(java.util.HashMap) Map(java.util.Map) NamedNodeMap(org.w3c.dom.NamedNodeMap) XPathFilter2ParameterSpec(javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec)

Example 8 with XPathType

use of javax.xml.crypto.dsig.spec.XPathType in project santuario-java by apache.

the class TransformTest method testConstructor.

@org.junit.Test
public void testConstructor() throws Exception {
    // test newTransform(String algorithm,
    // AlgorithmParameterSpec params)
    // for generating Transform objects
    Transform tm;
    for (int i = 0; i < TRANSFORM_ALGOS.length; i++) {
        String algo = TRANSFORM_ALGOS[i];
        TransformParameterSpec params = null;
        if (algo.equals(Transform.XPATH)) {
            params = new XPathFilterParameterSpec("xPath");
        } else if (algo.equals(Transform.XPATH2)) {
            params = new XPathFilter2ParameterSpec(Collections.singletonList(new XPathType("xPath2", XPathType.Filter.INTERSECT)));
        } else if (algo.equals(Transform.XSLT)) {
            params = new XSLTTransformParameterSpec(new XSLTStructure());
        }
        try {
            tm = factory.newTransform(algo, params);
            assertNotNull(tm);
            assertEquals(tm.getAlgorithm(), algo);
            assertEquals(tm.getParameterSpec(), params);
        } catch (Exception ex) {
            fail(TRANSFORM_ALGOS[i] + ": Unexpected exception " + ex);
        }
        try {
            tm = factory.newTransform(algo, new TestUtils.MyOwnC14nParameterSpec());
            fail(TRANSFORM_ALGOS[i] + ": Should raise an IAPE for invalid parameters");
        } catch (InvalidAlgorithmParameterException iape) {
        } catch (Exception ex) {
            fail(TRANSFORM_ALGOS[i] + ": Should raise a IAPE instead of " + ex);
        }
    }
    try {
        tm = factory.newTransform(null, (TransformParameterSpec) null);
        fail("Should raise a NPE for null algo");
    } catch (NullPointerException npe) {
    } catch (Exception ex) {
        fail("Should raise a NPE instead of " + ex);
    }
    try {
        tm = factory.newTransform("non-existent", (TransformParameterSpec) null);
        fail("Should raise an NSAE for non-existent algos");
    } catch (NoSuchAlgorithmException nsae) {
    } catch (Exception ex) {
        fail("Should raise an NSAE instead of " + ex);
    }
}
Also used : XPathType(javax.xml.crypto.dsig.spec.XPathType) XSLTTransformParameterSpec(javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec) XPathFilterParameterSpec(javax.xml.crypto.dsig.spec.XPathFilterParameterSpec) XSLTTransformParameterSpec(javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec) TransformParameterSpec(javax.xml.crypto.dsig.spec.TransformParameterSpec) XPathFilter2ParameterSpec(javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec)

Aggregations

XPathType (javax.xml.crypto.dsig.spec.XPathType)8 XPathFilter2ParameterSpec (javax.xml.crypto.dsig.spec.XPathFilter2ParameterSpec)7 HashMap (java.util.HashMap)4 NamedNodeMap (org.w3c.dom.NamedNodeMap)4 ArrayList (java.util.ArrayList)3 Element (org.w3c.dom.Element)3 Map (java.util.Map)2 TransformParameterSpec (javax.xml.crypto.dsig.spec.TransformParameterSpec)2 XPathFilterParameterSpec (javax.xml.crypto.dsig.spec.XPathFilterParameterSpec)2 XSLTTransformParameterSpec (javax.xml.crypto.dsig.spec.XSLTTransformParameterSpec)2 Attr (org.w3c.dom.Attr)2