Project

General

Profile

Download (1.01 KB) 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

    
10
package eu.etaxonomy.cdm.strategy.cache.common;
11

    
12
import java.util.UUID;
13

    
14
import org.apache.log4j.Logger;
15

    
16
import eu.etaxonomy.cdm.model.common.IdentifiableEntity;
17
import eu.etaxonomy.cdm.strategy.StrategyBase;
18

    
19
public class IdentifiableEntityDefaultCacheStrategy<T extends IdentifiableEntity> extends StrategyBase implements IIdentifiableEntityCacheStrategy<T> {
20
	@SuppressWarnings("unused")
21
	private static final Logger logger = Logger.getLogger(IdentifiableEntityDefaultCacheStrategy.class);
22

    
23
	final static UUID uuid = UUID.fromString("85cbecb0-2020-11de-8c30-0800200c9a66");
24
	
25
	public String getTitleCache(T object) {
26
		return "-title cache generation not implemented-";
27
	}
28

    
29
	@Override
30
	protected UUID getUuid() {
31
		return uuid;
32
	}
33

    
34
}
(2-2/4)