completing merge from trunk for latest taxed developments
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / editor / ISecuredEditor.java
1 package eu.etaxonomy.taxeditor.editor;
2
3 import eu.etaxonomy.cdm.model.taxon.Taxon;
4 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
5
6 public interface ISecuredEditor {
7
8 /**
9 *
10 * @return true if the current authentication (= {@link User}) has sufficient
11 * privileges to edit the {@link Taxon} or {@link TaxonNode}
12 */
13 public abstract boolean permissionsSatisfied();
14
15 }