001/*
002 * (C) Copyright 2006-2008 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 *
017 * $Id$
018 */
019
020package org.nuxeo.ecm.platform.audit.ws;
021
022import java.io.Serializable;
023
024public class EventDescriptorPage implements Serializable {
025
026    private static final long serialVersionUID = 876567561L;
027
028    private int pageIndex;
029
030    private boolean bHasMorePage;
031
032    private EventDescriptor[] events;
033
034    public EventDescriptorPage() {
035        this(null, 0, false);
036    }
037
038    public EventDescriptorPage(EventDescriptor[] events, int pageIndex, boolean bHasMorePage) {
039        this.pageIndex = pageIndex;
040        this.bHasMorePage = bHasMorePage;
041        this.events = events;
042    }
043
044    public int getPageIndex() {
045        return pageIndex;
046    }
047
048    public boolean hasModePage() {
049        return bHasMorePage;
050    }
051
052    public EventDescriptor[] getEvents() {
053        return events;
054    }
055
056    public boolean getHasMorePage() {
057        return bHasMorePage;
058    }
059
060    public void setPageIndex(int pageIndex) {
061        this.pageIndex = pageIndex;
062    }
063
064    public void setHasMorePage(boolean hasMorePage) {
065        bHasMorePage = hasMorePage;
066    }
067
068    public void setEvents(EventDescriptor[] events) {
069        this.events = events;
070    }
071
072}