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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy