Removed function declaration from interface

This commit is contained in:
2025-01-17 15:11:48 +01:00
parent 097af3ed3a
commit ec49f496da
3 changed files with 0 additions and 11 deletions

View File

@@ -164,9 +164,4 @@ public class Saxon implements XmlEngine{
public String getVersion() {
return "Saxon " + new Processor(false).getSaxonProductVersion();
}
@Override
public String addParam(String data, String processorData) throws Exception {
return null;
}
}

View File

@@ -124,11 +124,6 @@ public class Xalan implements XmlEngine{
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
* @param data xml document

View File

@@ -11,5 +11,4 @@ public interface XmlEngine {
String validate(String data, String xsd) throws Exception;
String executeXQuery(String data, String xquery, String version) throws Exception;
public String getVersion();
String addParam(String processorData, String paramName, String paramValue) throws Exception;
}