summaryrefslogtreecommitdiff
path: root/src/provider/ProfileListener.java
blob: 423200103a6b0575a9370052509ca5a4aef451bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}