Merge branch 'release/5.19.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / editor / definedterm / input / AbstractDefinedTermEditorInput.java
1 /**
2 * Copyright (C) 2009 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.editor.definedterm.input;
10
11 import java.util.List;
12
13 import eu.etaxonomy.cdm.model.term.DefinedTermBase;
14 import eu.etaxonomy.taxeditor.editor.CdmEntitySessionInput;
15
16 /**
17 * @author l.morris
18 * @date 3 Jan 2012
19 */
20 public abstract class AbstractDefinedTermEditorInput<T extends DefinedTermBase> extends CdmEntitySessionInput {
21
22 public AbstractDefinedTermEditorInput() {
23 super(true);
24 }
25
26 public abstract List<String> getTermClasses();
27 }