Package org.apache.syncope.common.lib.to
Class PagedResult<T extends BaseBean>
- java.lang.Object
-
- org.apache.syncope.common.lib.to.PagedResult<T>
-
- All Implemented Interfaces:
Serializable
,BaseBean
public class PagedResult<T extends BaseBean> extends Object implements BaseBean
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PagedResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
URI
getNext()
int
getPage()
URI
getPrev()
List<T>
getResult()
int
getSize()
int
getTotalCount()
int
hashCode()
void
setNext(URI next)
void
setPage(int page)
void
setPrev(URI prev)
void
setSize(int size)
void
setTotalCount(int totalCount)
-
-
-
Method Detail
-
getPrev
public URI getPrev()
-
setPrev
public void setPrev(URI prev)
-
getNext
public URI getNext()
-
setNext
public void setNext(URI next)
-
getPage
public int getPage()
-
setPage
public void setPage(int page)
-
getSize
public int getSize()
-
setSize
public void setSize(int size)
-
getTotalCount
public int getTotalCount()
-
setTotalCount
public void setTotalCount(int totalCount)
-
-