1 /*
2 * (C) Copyright 2007 Nuxeo SAS (http://nuxeo.com/) and contributors.
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the GNU Lesser General Public License
6 * (LGPL) version 2.1 which accompanies this distribution, and is available at
7 * http://www.gnu.org/licenses/lgpl.html
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * Contributors:
15 * Nuxeo - initial API and implementation
16 *
17 * $Id$
18 */
19
20 package org.nuxeo.ecm.core.api;
21
22 import java.util.Map;
23
24 /**
25 * @author <a href="mailto:[email protected]">Bogdan Stefanescu</a>
26 *
27 */
28 public interface DataModelMap extends Map<String, DataModel>{
29
30 // public Collection<DataModel> getDirtyModels();
31 //
32 // public Map<String, Object> getDirtyFields();
33 //
34 // public Collection<DataModel> getDataModels();
35 //
36 // public DataModel getDataModel(String schema);
37
38 }