Project

General

Profile

Download (909 Bytes) Statistics
| Branch: | Tag: | Revision:
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.test;
10

    
11
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
12
import eu.etaxonomy.cdm.api.conversation.ConversationHolderMock;
13
import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
14
import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
15

    
16
/**
17
 * @author cmathew
18
 * @date 15 Jun 2015
19
 */
20
public class MockConversationEnabled implements IConversationEnabled {
21

    
22
    @Override
23
    public void update(CdmDataChangeMap arg0) {
24
        // TODO Auto-generated method stub
25

    
26
    }
27

    
28
    @Override
29
    public ConversationHolder getConversationHolder() {
30
        return new ConversationHolderMock();
31
    }
32
}
(3-3/4)