summaryrefslogtreecommitdiffstats
path: root/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java
diff options
context:
space:
mode:
Diffstat (limited to 'wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java')
-rw-r--r--wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java b/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java
deleted file mode 100644
index 0ae6b2c..0000000
--- a/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/de/unistuttgart/iaas/xml/XPathEvaluator.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- *
- * Copyright 2011 IAAS University of Stuttgart <br>
- * <br>
- *
- * @author uwe.breitenbuecher@iaas.uni-stuttgart.de
- *
- */
-package de.unistuttgart.iaas.xml;
-
-import javax.xml.namespace.QName;
-import javax.xml.xpath.XPath;
-import javax.xml.xpath.XPathFactory;
-
-
-public class XPathEvaluator {
-
- public static XPath xpath = XPathFactory.newInstance().newXPath();
-
-
- @SuppressWarnings("unchecked")
- public static <t> t evaluate(String expression, Object source, QName returnType) {
-
- Object resultAsObject = null;
- try {
- resultAsObject = xpath.evaluate(expression, source, returnType);
-
- } catch (Exception e) {
- e.printStackTrace();
- }
- return (t) resultAsObject;
- }
-
-}