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

com.syncano.library.callbacks.SyncanoListCallback Maven / Gradle / Ivy

Go to download

Syncano's library is written in Java and provides communication with Syncano (www.syncano.io) via HTTPS RESTful interface.

There is a newer version: 4.1.2
Show newest version
package com.syncano.library.callbacks;

import com.syncano.library.api.Response;
import com.syncano.library.api.ResponseGetList;

import java.util.List;

public abstract class SyncanoListCallback implements SyncanoCallback> {
    @Override
    public void success(Response> response, List result) {
        success((ResponseGetList) response, result);
    }

    @Override
    public void failure(Response> response) {
        failure((ResponseGetList) response);
    }

    public abstract void success(ResponseGetList response, List result);

    public abstract void failure(ResponseGetList response);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy