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.IBacterialName;
16

    
17
/**
18
 * The bacterial name default cache strategy.
19
 *
20
 * @author a.mueller
21
 *
22
 */
23
public class BacterialNameDefaultCacheStrategy
24
            extends NonViralNameDefaultCacheStrategy<IBacterialName>
25
            implements  INonViralNameCacheStrategy<IBacterialName> {
26
	private static final long serialVersionUID = 7369285557176649585L;
27
	private static final Logger logger = Logger.getLogger(BacterialNameDefaultCacheStrategy.class);
28
	final static UUID uuid = UUID.fromString("b97cf0af-2f97-487e-8d06-cbe924f3222a");
29

    
30
	static {
31
		logger.info("BacterialNameDefaultCacheStrategy not yet really implemented. Its just a copy of BotanicalNameDefaultCacheStrategy right now !!");
32
	}
33

    
34
	@Override
35
	public  UUID getUuid(){
36
		return uuid;
37
	}
38

    
39

    
40
	public static BacterialNameDefaultCacheStrategy NewInstance(){
41
		return new BacterialNameDefaultCacheStrategy();
42
	}
43

    
44
}
(1-1/9)