Bug 977: Return RpcError result on neconf failure
[controller.git] / opendaylight / netconf / netconf-util / src / main / java / org / opendaylight / controller / netconf / util / xml / XMLNetconfUtil.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.netconf.util.xml;
10
11 import javax.xml.xpath.XPath;
12 import javax.xml.xpath.XPathExpression;
13 import javax.xml.xpath.XPathExpressionException;
14 import javax.xml.xpath.XPathFactory;
15
16 import org.opendaylight.controller.netconf.api.xml.XmlNetconfConstants;
17
18 public final class XMLNetconfUtil {
19
20     private XMLNetconfUtil() {}
21
22     public static XPathExpression compileXPath(String xPath) {
23         final XPathFactory xPathfactory = XPathFactory.newInstance();
24         final XPath xpath = xPathfactory.newXPath();
25         xpath.setNamespaceContext(new HardcodedNamespaceResolver("netconf",
26                 XmlNetconfConstants.URN_IETF_PARAMS_XML_NS_NETCONF_BASE_1_0));
27         try {
28             return xpath.compile(xPath);
29         } catch (final XPathExpressionException e) {
30             throw new IllegalStateException("Error while compiling xpath expression " + xPath, e);
31         }
32     }
33
34 }