it.espr.mvc.json.Json Maven / Gradle / Ivy
package it.espr.mvc.json;
public interface Json {
public Type deserialise(Class type, String string) throws Exception;
public String serialise(Object object) throws Exception;
}
package it.espr.mvc.json;
public interface Json {
public Type deserialise(Class type, String string) throws Exception;
public String serialise(Object object) throws Exception;
}