cleanup
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / config / DeleteConfiguratorBase.java
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 * @author a.mueller
18 * @since 04.01.2012
19 *
20 */
21 public abstract class DeleteConfiguratorBase implements Serializable {
22 @SuppressWarnings("unused")
23 private static final Logger logger = Logger.getLogger(DeleteConfiguratorBase.class);
24
25 private boolean isCheck = false;
26
27 /**
28 * @return the isCheck
29 */
30 public boolean isCheck() {
31 return isCheck;
32 }
33
34 /**
35 * @param isCheck the isCheck to set
36 */
37 public void setCheck(boolean isInternal) {
38 this.isCheck = isInternal;
39 }
40
41
42 }