Compare commits
2 Commits
9cb949b485
...
b7af1eb33a
| Author | SHA1 | Date | |
|---|---|---|---|
| b7af1eb33a | |||
| ec49f496da |
@@ -164,9 +164,4 @@ public class Saxon implements XmlEngine{
|
|||||||
public String getVersion() {
|
public String getVersion() {
|
||||||
return "Saxon " + new Processor(false).getSaxonProductVersion();
|
return "Saxon " + new Processor(false).getSaxonProductVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String addParam(String data, String processorData) throws Exception {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -124,11 +124,6 @@ public class Xalan implements XmlEngine{
|
|||||||
return org.apache.xalan.Version.getVersion();
|
return org.apache.xalan.Version.getVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String addParam(String data, String processorData) throws Exception {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validates string representation of the xml document against xsd schema
|
* Validates string representation of the xml document against xsd schema
|
||||||
* @param data xml document
|
* @param data xml document
|
||||||
|
|||||||
@@ -11,5 +11,4 @@ public interface XmlEngine {
|
|||||||
String validate(String data, String xsd) throws Exception;
|
String validate(String data, String xsd) throws Exception;
|
||||||
String executeXQuery(String data, String xquery, String version) throws Exception;
|
String executeXQuery(String data, String xquery, String version) throws Exception;
|
||||||
public String getVersion();
|
public String getVersion();
|
||||||
String addParam(String processorData, String paramName, String paramValue) throws Exception;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user