io.github.lc.oss.commons.api.services.JsonService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api.services Show documentation
Show all versions of api.services Show documentation
API contracts for common services
package io.github.lc.oss.commons.api.services;
import io.github.lc.oss.commons.serialization.Jsonable;
public interface JsonService {
T from(String json, Class clazz);
String to(Jsonable object);
}