Removed function declaration from interface
This commit is contained in:
		| @@ -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; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -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 | ||||
|   | ||||
| @@ -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; | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user