001/*
002 * Copyright (c) 2006-2012 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Nuxeo
011 */
012
013package org.nuxeo.ecm.automation.core.util;
014
015import java.io.Serializable;
016import java.util.Map;
017
018import org.nuxeo.ecm.automation.core.util.Paginable;
019
020/**
021 * Adds page support on {@link RecordSet}
022 *
023 * @author <a href="mailto:tdelprat@nuxeo.com">Tiry</a>
024 * @since 5.7
025 */
026public interface PaginableRecordSet extends Paginable<Map<String, Serializable>>, RecordSet {
027
028}