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

com.box.boxjavalibv2.requests.requestobjects.BoxPagingRequestObject Maven / Gradle / Ivy

package com.box.boxjavalibv2.requests.requestobjects;

import com.box.restclientv2.requestsbase.BoxDefaultRequestObject;

public class BoxPagingRequestObject extends BoxDefaultRequestObject {

    private BoxPagingRequestObject() {
        super();
    }

    /**
     * BoxPagingRequestObject for get a paged list.
     * 
     * @param limit
     *            the number of items to return. default is 100, max is 1000.
     * @param offset
     *            the item at which to begin the response, default is 0.
     * @return BoxFolderRequestObject
     */
    public static BoxPagingRequestObject pagingRequestObject(final int limit, final int offset) {
        return (BoxPagingRequestObject) (new BoxPagingRequestObject()).setPage(limit, offset);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy