Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / operation / IFeedbackGenerator.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.operation;
10
11 import java.util.UUID;
12
13 /**
14 * Generates feeback for waiting remoting progress monitors.
15 * The default implementation of this interface is {@link FeedbackGenerator}
16 *
17 * @author cmathew
18 * @date 28 Oct 2015
19 *
20 */
21 public interface IFeedbackGenerator {
22
23 /**
24 * Generates and sets feedback for a waiting remoting progress
25 * monitor corresponding to the given uuid.
26 *
27 * @param uuid of target waiting remoting progress monitor
28 */
29 public void setFeedbackForMonitor(UUID uuid);
30
31 }