Project

General

Profile

Download (2.88 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
    boolean ignoreIsUsedInCdmLinkSource = false;
18
    boolean deleteAllSpecimenDescriptions = false;
19
    boolean deleteAllLiteratureDescriptions = false;
20
    boolean deleteAllDefaultDescriptions = false;
21
    boolean deleteAllAggregatedDescriptions = true;
22

    
23
    /**
24
     * @return the ignoreIsUsedInCdmLinkSource
25
     */
26
    public boolean isIgnoreIsUsedInCdmLinkSource() {
27
        return ignoreIsUsedInCdmLinkSource;
28
    }
29

    
30
    /**
31
     * @param ignoreIsUsedInCdmLinkSource the ignoreIsUsedInCdmLinkSource to set
32
     */
33
    public void setIgnoreIsUsedInCdmLinkSource(boolean ignoreIsUsedInCdmLinkSource) {
34
        this.ignoreIsUsedInCdmLinkSource = ignoreIsUsedInCdmLinkSource;
35
    }
36

    
37
    /**
38
     * @return the deleteAllSpecimenDescriptions
39
     */
40
    public boolean isDeleteAllSpecimenDescriptions() {
41
        return deleteAllSpecimenDescriptions;
42
    }
43

    
44
    /**
45
     * @param deleteAllSpecimenDescriptions the deleteAllSpecimenDescriptions to set
46
     */
47
    public void setDeleteAllSpecimenDescriptions(boolean deleteAllSpecimenDescriptions) {
48
        this.deleteAllSpecimenDescriptions = deleteAllSpecimenDescriptions;
49
    }
50

    
51
    /**
52
     * @return the deleteAllLiteratureDescriptions
53
     */
54
    public boolean isDeleteAllLiteratureDescriptions() {
55
        return deleteAllLiteratureDescriptions;
56
    }
57

    
58
    /**
59
     * @param deleteAllLiteratureDescriptions the deleteAllLiteratureDescriptions to set
60
     */
61
    public void setDeleteAllLiteratureDescriptions(boolean deleteAllLiteratureDescriptions) {
62
        this.deleteAllLiteratureDescriptions = deleteAllLiteratureDescriptions;
63
    }
64

    
65
    /**
66
     * @return the deleteAllDefaultDescriptions
67
     */
68
    public boolean isDeleteAllDefaultDescriptions() {
69
        return deleteAllDefaultDescriptions;
70
    }
71

    
72
    /**
73
     * @param deleteAllDefaultDescriptions the deleteAllDefaultDescriptions to set
74
     */
75
    public void setDeleteAllDefaultDescriptions(boolean deleteAllDefaultDescriptions) {
76
        this.deleteAllDefaultDescriptions = deleteAllDefaultDescriptions;
77
    }
78

    
79
    /**
80
     * @return the deleteAllAggregatedDescriptions
81
     */
82
    public boolean isDeleteAllAggregatedDescriptions() {
83
        return deleteAllAggregatedDescriptions;
84
    }
85

    
86
    /**
87
     * @param deleteAllAggregatedDescriptions the deleteAllAggregatedDescriptions to set
88
     */
89
    public void setDeleteAllAggregatedDescriptions(boolean deleteAllAggregatedDescriptions) {
90
        this.deleteAllAggregatedDescriptions = deleteAllAggregatedDescriptions;
91
    }
92

    
93

    
94
}
(4-4/30)