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

co.fusionx.spotify.component.BaseComponent Maven / Gradle / Ivy

The newest version!
package co.fusionx.spotify.component;

import co.fusionx.spotify.model.PagingObject;

public interface BaseComponent {

    public  U previousPage(PagingObject pagingObject, Class result);

    public  U nextPage(PagingObject pagingObject, Class result);
}