Project

General

Profile

Download (811 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.dataportal;
10

    
11

    
12
/**
13
 * 
14
 * @author a.kohlbecker
15
 * 
16
 */
17
public class DataPortalManager {
18

    
19
	static DataPortalManager managerInstance = null;
20

    
21
	
22
	private DataPortalManager(){
23
		
24
	}
25

    
26
	public static void prepare() {
27
		if (managerInstance == null) {
28
			managerInstance = new DataPortalManager();
29
			managerInstance.setupDataPortal();
30
		}
31
	}
32

    
33
	private void setupDataPortal() {
34
		// TODO configure the data portal using drush, see http://dev.e-taxonomy.eu/svn/trunk/drupal/modules/cdm_dataportal/jenkins-ci/integration.sh
35
	}
36

    
37
}
(5-5/13)