com.hmsonline.json.transformer.JsonRemoveAction 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;
/**
* Remove a node from json
* @author baotran
*
*/
public class JsonRemoveAction implements JsonTransformer {
public void transform(JSONObject parent, Object targetKey) {
parent.remove(targetKey);
}
public void transform(Object jsonObject) {
//do nothing
}
}