Project

General

Profile

Download (1.28 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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.strategy.cache.name;
10

    
11
import java.util.UUID;
12

    
13
import org.apache.log4j.Logger;
14

    
15
import eu.etaxonomy.cdm.model.name.BacterialName;
16

    
17
/**
18
 * The bacterial name default cache strategy.
19
 * 
20
 * @author a.mueller
21
 *
22
 */
23
public class BacterialNameDefaultCacheStrategy<NAME extends BacterialName> extends NonViralNameDefaultCacheStrategy<NAME> implements  INonViralNameCacheStrategy<NAME> {
24
	private static final long serialVersionUID = 7369285557176649585L;
25
	private static final Logger logger = Logger.getLogger(BacterialNameDefaultCacheStrategy.class);
26
	final static UUID uuid = UUID.fromString("b97cf0af-2f97-487e-8d06-cbe924f3222a");
27
	
28
	static {
29
		logger.warn("BacterialNameDefaultCacheStrategy not yet really implemented. Its just a copy of BotanicalNameDefaultCacheStrategy right now !!");
30
	};
31
	
32
	@Override
33
	public  UUID getUuid(){
34
		return uuid;
35
	}
36

    
37
	
38
	public static BacterialNameDefaultCacheStrategy NewInstance(){
39
		
40
		return new BacterialNameDefaultCacheStrategy();
41
	}
42
	
43
}
(1-1/8)