ch.viascom.groundwork.foxhttp.parser.FoxHttpParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foxhttp Show documentation
Show all versions of foxhttp Show documentation
The FoxHttp provides a fast and easy http client for java and android. It is part of the GroundWork Project by Viascom.
package ch.viascom.groundwork.foxhttp.parser;
import java.io.Serializable;
/**
* @author [email protected]
*/
public interface FoxHttpParser {
Serializable serializedToObject(String input, Class type) ;
String objectToSerialized(Serializable o);
}