com.aeontronix.enhancedmule.tools.util.restclient.RESTClientJsonParser Maven / Gradle / Ivy
/*
* Copyright (c) Aeontronix 2020
*/
package com.aeontronix.enhancedmule.tools.util.restclient;
import java.io.IOException;
import java.io.InputStream;
public interface RESTClientJsonParser {
String toJson(Object entity);
X parse(InputStream inputStream, Class clazz) throws IOException, ResponseParsingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy