All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hmsonline.json.transformer.JsonRemoveAction Maven / Gradle / Ivy

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
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy