Merge branch 'release/5.19.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.cdmlib / src / main / java / eu / etaxonomy / taxeditor / session / ICdmEntitySessionEnabled.java
1 /**
2 * Copyright (C) 2015 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.session;
10
11 import java.util.Collection;
12 import java.util.List;
13 import java.util.Map;
14
15 import eu.etaxonomy.cdm.model.common.ICdmBase;
16
17 public interface ICdmEntitySessionEnabled<T extends ICdmBase> {
18
19 public ICdmEntitySession getCdmEntitySession();
20
21 public Collection<T> getRootEntities();
22
23 public Map<Object, List<String>> getPropertyPathsMap();
24
25 }