All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.xml.security.utils.JDKXPathAPI Maven / Gradle / Ivy

package org.apache.xml.security.utils;

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class JDKXPathAPI implements XPathAPI {
    @Override
    public boolean evaluate(Node contextNode, Node xpathnode, String str, Node namespaceNode) {
        return false;
    }

    @Override
    public NodeList selectNodeList(Node contextNode, Node xpathnode, String str, Node namespaceNode) {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy