Project

General

Profile

Download (2.13 KB) 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 May 5, 2020
14
 */
15
public class DeleteDescriptiveDataSetConfigurator extends DeleteConfiguratorBase {
16

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

    
19
    boolean ignoreIsUsedInCdmLinkSource = false;
20
    boolean deleteAllSpecimenDescriptions = false;
21
    boolean deleteAllLiteratureDescriptions = false;
22
    boolean deleteAllDefaultDescriptions = false;
23
    boolean deleteAllAggregatedDescriptions = true;
24

    
25
    public boolean isIgnoreIsUsedInCdmLinkSource() {
26
        return ignoreIsUsedInCdmLinkSource;
27
    }
28
    public void setIgnoreIsUsedInCdmLinkSource(boolean ignoreIsUsedInCdmLinkSource) {
29
        this.ignoreIsUsedInCdmLinkSource = ignoreIsUsedInCdmLinkSource;
30
    }
31

    
32
    public boolean isDeleteAllSpecimenDescriptions() {
33
        return deleteAllSpecimenDescriptions;
34
    }
35
    public void setDeleteAllSpecimenDescriptions(boolean deleteAllSpecimenDescriptions) {
36
        this.deleteAllSpecimenDescriptions = deleteAllSpecimenDescriptions;
37
    }
38

    
39
    public boolean isDeleteAllLiteratureDescriptions() {
40
        return deleteAllLiteratureDescriptions;
41
    }
42
    public void setDeleteAllLiteratureDescriptions(boolean deleteAllLiteratureDescriptions) {
43
        this.deleteAllLiteratureDescriptions = deleteAllLiteratureDescriptions;
44
    }
45

    
46
    public boolean isDeleteAllDefaultDescriptions() {
47
        return deleteAllDefaultDescriptions;
48
    }
49
    public void setDeleteAllDefaultDescriptions(boolean deleteAllDefaultDescriptions) {
50
        this.deleteAllDefaultDescriptions = deleteAllDefaultDescriptions;
51
    }
52

    
53
    public boolean isDeleteAllAggregatedDescriptions() {
54
        return deleteAllAggregatedDescriptions;
55
    }
56
    public void setDeleteAllAggregatedDescriptions(boolean deleteAllAggregatedDescriptions) {
57
        this.deleteAllAggregatedDescriptions = deleteAllAggregatedDescriptions;
58
    }
59
}
(4-4/30)