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.operations.services;
014
015import java.io.Serializable;
016import java.util.Map;
017
018import org.nuxeo.ecm.automation.core.util.PaginablePageProvider;
019import org.nuxeo.ecm.automation.core.util.PaginableRecordSet;
020import org.nuxeo.ecm.platform.query.api.PageProvider;
021
022/**
023 * @author <a href="mailto:tdelprat@nuxeo.com">Tiry</a>
024 * @since 5.7
025 */
026public class PaginableRecordSetImpl extends PaginablePageProvider<Map<String, Serializable>> implements
027        PaginableRecordSet {
028
029    private static final long serialVersionUID = 1L;
030
031    public PaginableRecordSetImpl(PageProvider<Map<String, Serializable>> provider) {
032        super(provider);
033    }
034}