com.hmsonline.json.transformer.JsonTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-transformer Show documentation
Show all versions of json-transformer Show documentation
A json-2-json transformer library
The newest version!
package com.hmsonline.json.transformer;
import org.json.simple.JSONObject;
/**
* Interface for json transform action with or w/o condition
* @author baotran
*/
public interface JsonTransformer {
void transform(JSONObject parent, Object targetKey);
void transform(Object jsonObject);
}