package provider; import org.json.JSONObject; /** * Callback for new user profiles. */ public interface ProfileListener { /** * This method is called when a new profile is provided. * * @param obj A single JSON object */ void profileGenerated(JSONObject obj); }