Project

General

Profile

Download (644 Bytes) Statistics
| Branch: | Tag: | Revision:
1 d4992817 Andreas Kohlbecker
// $Id$
2
/**
3
* Copyright (C) 2009 EDIT
4 933e5ac3 Cherian Mathew
* European Distributed Institute of Taxonomy
5 d4992817 Andreas Kohlbecker
* http://www.e-taxonomy.eu
6 933e5ac3 Cherian Mathew
*
7 d4992817 Andreas Kohlbecker
* 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;
11
12 d6540dba Katja Luther
import java.util.UUID;
13
14 d4992817 Andreas Kohlbecker
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode;
15
16
/**
17
 * @author a.kohlbecker
18
 * @date 24.03.2011
19
 *
20
 */
21
public interface IPolytomousKeyNodeService extends IVersionableService<PolytomousKeyNode> {
22
23 3f76302e Cherian Mathew
    public DeleteResult delete(UUID nodeUuid, boolean deleteChildren);
24 1f478638 Cherian Mathew
25
26 d4992817 Andreas Kohlbecker
}