Project

General

Profile

Download (900 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2020 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.cdm.api.service.config;
10

    
11
/**
12
 * @author k.luther
13
 * @since Jun 19, 2020
14
 */
15
public class RemoveDescriptionsFromDescriptiveDataSetConfigurator extends DeleteConfiguratorBase {
16

    
17
    private static final long serialVersionUID = -3948463852000326551L;
18

    
19
    boolean onlyRemoveDescriptionsFromDataSet = true;
20

    
21

    
22
    public boolean isOnlyRemoveDescriptionsFromDataSet() {
23
        return onlyRemoveDescriptionsFromDataSet;
24
    }
25

    
26

    
27
    public void setOnlyRemoveDescriptionsFromDataSet(boolean onlyRemoveDescriptionsFromDataSet) {
28
        this.onlyRemoveDescriptionsFromDataSet = onlyRemoveDescriptionsFromDataSet;
29
    }
30

    
31

    
32

    
33

    
34

    
35
}
(19-19/30)