Project

General

Profile

Download (952 Bytes) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2008 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

    
10
package eu.etaxonomy.cdm.app.jaxb;
11

    
12
import java.io.File;
13
import java.util.UUID;
14

    
15
import org.apache.log4j.Logger;
16

    
17
import eu.etaxonomy.cdm.app.common.CdmDestinations;
18
import eu.etaxonomy.cdm.database.DbSchemaValidation;
19
import eu.etaxonomy.cdm.database.ICdmDataSource;
20

    
21
/**
22
 * @author a.babadshanjan
23
 * @created 19.09.2008
24
 */
25
public class CdmDiffActivator {
26

    
27
	private static final Logger logger = Logger.getLogger(CdmDiffActivator.class);
28

    
29
	static DbSchemaValidation hbm2dll = DbSchemaValidation.CREATE;
30

    
31
	static final ICdmDataSource cdmSourceOne = CdmDestinations.localH2();
32
	static final ICdmDataSource cdmSourceTwo = CdmDestinations.localH2();
33

    
34
}
(1-1/3)