Spring Social Facebook

org.springframework.social.facebook.api
Class PagingParameters

java.lang.Object
  extended by org.springframework.social.facebook.api.PagingParameters

public class PagingParameters
extends java.lang.Object

Carries parameters to describe a paged set of results.

Author:
Craig Walls

Constructor Summary
PagingParameters(java.lang.Integer limit, java.lang.Integer offset, java.lang.Long since, java.lang.Long until)
          Constructs a PagedListParameters.
 
Method Summary
 java.lang.Integer getLimit()
           
 java.lang.Integer getOffset()
           
 java.lang.Long getSince()
           
 java.lang.Long getUntil()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PagingParameters

public PagingParameters(java.lang.Integer limit,
                        java.lang.Integer offset,
                        java.lang.Long since,
                        java.lang.Long until)
Constructs a PagedListParameters.

Parameters:
limit - The number of items to limit the list to.
offset - The offset into the full result list to start this list at.
since - The beginning timestamp bound for time-sensitive content (e.g., posts, comments, etc).
until - The ending timestamp bound for time-sensitive content (e.g., posts, comments, etc).
Method Detail

getLimit

public java.lang.Integer getLimit()

getOffset

public java.lang.Integer getOffset()

getSince

public java.lang.Long getSince()

getUntil

public java.lang.Long getUntil()

Spring Social Facebook