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

mobi.cangol.mobile.service.plugin.AbstractAction Maven / Gradle / Ivy

There is a newer version: 1.2.7
Show newest version
package mobi.cangol.mobile.service.plugin;

import android.content.Context;

import java.util.HashMap;

/**
 * Created by jince on 2017/3/22.
 */

public abstract class AbstractAction {
    public abstract boolean isAsync(Context context, HashMap requestData);

    public abstract AbstractActionResult invoke(Context context, HashMap requestData);

    public boolean isAsync(Context context, HashMap requestData, Object object) {
        return false;
    }

    public AbstractActionResult invoke(Context context, HashMap requestData, Object object) {
        return new AbstractActionResult.Builder().code(AbstractActionResult.CODE_NOT_IMPLEMENT).msg("This method has not yet been implemented.").build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy