mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-16 05:18:39 +00:00
21 lines
452 B
Java
21 lines
452 B
Java
package com.adjust.sdk;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
/**
|
|
* Created by pfms on 15/12/14.
|
|
*/
|
|
public interface IAttributionHandler {
|
|
public void init(IActivityHandler activityHandler,
|
|
ActivityPackage attributionPackage,
|
|
boolean startPaused);
|
|
|
|
public void getAttribution();
|
|
|
|
public void checkAttribution(JSONObject jsonResponse);
|
|
|
|
public void pauseSending();
|
|
|
|
public void resumeSending();
|
|
}
|