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 ModifiedDocumentDescriptorPage implements Serializable {
025
026    private static final long serialVersionUID = 1L;
027
028    private int pageIndex;
029
030    private boolean bHasMorePage;
031
032    private ModifiedDocumentDescriptor[] modifiedDocuments;
033
034    public ModifiedDocumentDescriptorPage() {
035        this(null, 0, false);
036    }
037
038    public ModifiedDocumentDescriptorPage(ModifiedDocumentDescriptor[] modifiedDocuments, int pageIndex,
039            boolean bHasMorePage) {
040        this.pageIndex = pageIndex;
041        this.bHasMorePage = bHasMorePage;
042        this.modifiedDocuments = modifiedDocuments;
043    }
044
045    public int getPageIndex() {
046        return pageIndex;
047    }
048
049    public boolean hasMorePage() {
050        return bHasMorePage;
051    }
052
053    public ModifiedDocumentDescriptor[] getModifiedDocuments() {
054        return modifiedDocuments;
055    }
056
057    public boolean getHasMorePage() {
058        return bHasMorePage;
059    }
060
061    public boolean isBHasMorePage() {
062        return bHasMorePage;
063    }
064
065    public void setBHasMorePage(boolean hasMorePage) {
066        bHasMorePage = hasMorePage;
067    }
068
069    public void setPageIndex(int pageIndex) {
070        this.pageIndex = pageIndex;
071    }
072
073    public void setModifiedDocuments(ModifiedDocumentDescriptor[] modifiedDocuments) {
074        this.modifiedDocuments = modifiedDocuments;
075    }
076
077}