added polytomous key tests and initial developments on caching
[taxeditor.git] / eu.etaxonomy.taxeditor.remoting / src / main / java / eu / etaxonomy / cdm / api / cache / CdmEntityCacheManager.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 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.cdm.api.cache;
11
12 import org.springframework.beans.factory.annotation.Autowired;
13 import org.springframework.stereotype.Component;
14
15 /**
16 * @author cmathew
17 * @date 16 Oct 2014
18 *
19 */
20 @Component
21 public class CdmEntityCacheManager {
22
23 @Autowired
24 private CdmTransientEntityCacher cdmTransientEntityCacher;
25
26
27 public CdmTransientEntityCacher getCdmTransientEntityCacher() {
28 return cdmTransientEntityCacher;
29 }
30 }