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

org.redmine.ta.internal.json.JsonObjectParser Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

The newest version!
package org.redmine.ta.internal.json;

import org.json.JSONException;
import org.json.JSONObject;

/**
 * Json object parser.
 * 
 * @author maxkar
 * 
 * @param 
 *            parsing result type.
 */
public interface JsonObjectParser {
	public T parse(JSONObject input) throws JSONException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy