org.jose4j.json.internal.json_simple.JSONAware Maven / Gradle / Ivy
The newest version!
package org.jose4j.json.internal.json_simple;
/**
* Beans that support customized output of JSON text shall implement this interface.
* @author (originally) FangYidong [email protected]
*/
public interface JSONAware {
/**
* @return JSON text
*/
String toJSONString();
}