Project

General

Profile

Download (870 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.vaadin.mvp;
10

    
11
import eu.etaxonomy.cdm.model.common.CdmBase;
12

    
13
/**
14
 * Provides generic save operations of modified cdm entities.
15
 *
16
 * @author a.kohlbecker
17
 * @since Apr 5, 2017
18
 *
19
 */
20
public abstract class AbstractCdmEditorPresenter<CDM extends CdmBase, V extends ApplicationView<?>> extends CdmEditorPresenterBase<CDM, CDM, V> {
21

    
22
    private static final long serialVersionUID = -6315824180341694825L;
23

    
24

    
25
    @Override
26
    protected CDM createDTODecorator(CDM cdmEntitiy) {
27
        return cdmEntitiy;
28
    }
29

    
30
    @Override
31
    protected CDM cdmEntity(CDM dto) {
32
        return dto;
33
    }
34

    
35
}
(3-3/14)