Project

General

Profile

Download (857 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2009 EDIT
4
 * European Distributed Institute of Taxonomy 
5
 * http://www.e-taxonomy.eu
6
 * 
7
 * The contents of this file are subject to the Mozilla Public License Version 1.1
8
 * See LICENSE.TXT at the top of this package for the full license terms.
9
 */
10
package eu.etaxonomy.dataportal;
11

    
12

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

    
20
	static DataPortalManager managerInstance = null;
21

    
22
	
23
	private DataPortalManager(){
24
		
25
	}
26

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

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

    
38
}
(3-3/7)