Project

General

Profile

Download (763 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2018 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.cdm.api.service.dto;
11

    
12
import eu.etaxonomy.cdm.model.description.TaxonDescription;
13
import eu.etaxonomy.cdm.persistence.dto.TaxonNodeDto;
14

    
15
/**
16
 * @author pplitzner
17
 * @since 16.04.2018
18
 *
19
 */
20
public class TaxonRowWrapperDTO extends RowWrapperDTO<TaxonDescription> {
21

    
22
    private static final long serialVersionUID = 5198447592554976471L;
23

    
24

    
25
    public TaxonRowWrapperDTO(TaxonDescription description, TaxonNodeDto taxonNode) {
26
        super(description, taxonNode);
27
    }
28

    
29
}
(30-30/30)