
org.jsmart.zerocode.converter.Converter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zerocode-rest-bdd Show documentation
Show all versions of zerocode-rest-bdd Show documentation
Zero Code BDD framework for RESTFUL applications
The newest version!
package org.jsmart.zerocode.converter;
import com.fasterxml.jackson.databind.JsonNode;
import java.io.IOException;
public interface Converter {
Object xmlToJson(String xmlObject);
Object jsonToJson(String jsonString) throws IOException;
Object jsonBlockToJson(JsonNode jsonNode) throws IOException;
default Object jsonNodeToJson(JsonNode jsonNode) throws IOException {
return jsonBlockToJson(jsonNode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy