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

com.lajospolya.spotifyapiwrapper.response.PagingCursor Maven / Gradle / Ivy

Go to download

This project wraps the Spotify public API in order to allow users to intuitively use it

There is a newer version: 3.0.RELEASE
Show newest version
package com.lajospolya.spotifyapiwrapper.response;

import java.util.List;

/**
 * Spotify's implementation of a Paging Cursor
 * @author Lajos Polya
 * @param  type of the item
 */
public class PagingCursor
{
    private String href;
    private List items;
    private Integer limit;
    private String next;
    private Cursor cursors;
    private Integer total;

    public String getHref()
    {
        return href;
    }

    public void setHref(String href)
    {
        this.href = href;
    }

    public List getItems()
    {
        return items;
    }

    public void setItems(List items)
    {
        this.items = items;
    }

    public Integer getLimit()
    {
        return limit;
    }

    public void setLimit(Integer limit)
    {
        this.limit = limit;
    }

    public String getNext()
    {
        return next;
    }

    public void setNext(String next)
    {
        this.next = next;
    }

    public Cursor getCursors()
    {
        return cursors;
    }

    public void setCursors(Cursor cursors)
    {
        this.cursors = cursors;
    }

    public Integer getTotal()
    {
        return total;
    }

    public void setTotal(Integer total)
    {
        this.total = total;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy