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.List;
017import java.util.Map;
018
019/**
020 * Interface for Wrapping IterableQueryResult
021 *
022 * @author <a href="mailto:tdelprat@nuxeo.com">Tiry</a>
023 * @since 5.7
024 */
025public interface RecordSet extends List<Map<String, Serializable>> {
026
027}