#5297 Implement client side remoting progress monitor feedback mechanism, Add test...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / operation / IFeedbackGenerator.java
1 // $Id$
2 /**
3 * Copyright (C) 2015 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.operation;
11
12 import java.util.UUID;
13
14 /**
15 * Generates feeback for waiting remoting progress monitors.
16 * The default implementation of this interface is {@link FeedbackGenerator}
17 *
18 * @author cmathew
19 * @date 28 Oct 2015
20 *
21 */
22 public interface IFeedbackGenerator {
23
24 /**
25 * Generates and sets feedback for a waiting remoting progress
26 * monitor corresponding to the given uuid.
27 *
28 * @param uuid of target waiting remoting progress monitor
29 */
30 public void setFeedbackForMonitor(UUID uuid);
31
32 }