Project

General

Profile

Download (923 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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
import java.io.Serializable;
12

    
13
import org.apache.log4j.Logger;
14

    
15
/**
16
 * Base class for delete configurators.
17
 *
18
 * @author a.mueller
19
 * @since 04.01.2012
20
 */
21
public abstract class DeleteConfiguratorBase implements Serializable {
22

    
23
    private static final long serialVersionUID = 8841790311273474123L;
24
    @SuppressWarnings("unused")
25
	private static final Logger logger = Logger.getLogger(DeleteConfiguratorBase.class);
26

    
27
	private boolean isCheck = false;
28

    
29
	public boolean isCheck() {
30
		return isCheck;
31
	}
32
	public void setCheck(boolean isInternal) {
33
		this.isCheck = isInternal;
34
	}
35
}
(3-3/30)