/* Copyright (c) 2007-2009, Yusuke Yamamoto All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Yusuke Yamamoto nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY Yusuke Yamamoto ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Yusuke Yamamoto BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package weibo4android; /** * Controlls pagination * * @author Yusuke Yamamoto - yusuke at mac.com */ public class Paging implements java.io.Serializable { private int page = -1; private int count = -1; private long sinceId = -1; private long maxId = -1; private static final long serialVersionUID = -3285857427993796670L; public Paging() { } public Paging(int page) { setPage(page); } public Paging(long sinceId) { setSinceId(sinceId); } public Paging(int page, int count) { this(page); setCount(count); } public Paging(int page, long sinceId) { this(page); setSinceId(sinceId); } public Paging(int page, int count, long sinceId) { this(page, count); setSinceId(sinceId); } public Paging(int page, int count, long sinceId, long maxId) { this(page, count, sinceId); setMaxId(maxId); } public int getPage() { return page; } public void setPage(int page) { if (page < 1) { throw new IllegalArgumentException("page should be positive integer. passed:" + page); } this.page = page; } public int getCount() { return count; } public void setCount(int count) { if (count < 1) { throw new IllegalArgumentException("count should be positive integer. passed:" + count); } this.count = count; } public Paging count(int count) { setCount(count); return this; } public long getSinceId() { return sinceId; } public void setSinceId(int sinceId) { if (sinceId < 1) { throw new IllegalArgumentException("since_id should be positive integer. passed:" + sinceId); } this.sinceId = sinceId; } public Paging sinceId(int sinceId) { setSinceId(sinceId); return this; } public void setSinceId(long sinceId) { if (sinceId < 1) { throw new IllegalArgumentException("since_id should be positive integer. passed:" + sinceId); } this.sinceId = sinceId; } public Paging sinceId(long sinceId) { setSinceId(sinceId); return this; } public long getMaxId() { return maxId; } public void setMaxId(long maxId) { if (maxId < 1) { throw new IllegalArgumentException("max_id should be positive integer. passed:" + maxId); } this.maxId = maxId; } public Paging maxId(long maxId) { setMaxId(maxId); return this; } }