1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.cache.internal

File DefaultCacheManagerConfiguration.java

 

Coverage histogram

../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
2
2
1
76
28
2
1
1
2
1

Classes

Class Line # Actions
DefaultCacheManagerConfiguration 37 2 0% 2 0
1.0100%
 

Contributing tests

This file is covered by 87 tests. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.cache.internal;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24    import javax.inject.Singleton;
25   
26    import org.xwiki.cache.CacheManagerConfiguration;
27    import org.xwiki.component.annotation.Component;
28    import org.xwiki.configuration.ConfigurationSource;
29   
30    /**
31    * Default implementation of {@link CacheManagerConfiguration}.
32    *
33    * @version $Id: 09f6f3dc7000bbc2cb9d60686add1e37ffa5982d $
34    */
35    @Component
36    @Singleton
 
37    public class DefaultCacheManagerConfiguration implements CacheManagerConfiguration
38    {
39    /**
40    * Prefix for configuration keys for the Cache module.
41    */
42    private static final String PREFIX = "cache.";
43   
44    /**
45    * The default cache implementation.
46    */
47    private static final String DEFAULT_CACHE_HINT = "infinispan";
48   
49    /**
50    * The default local cache implementation.
51    */
52    private static final String DEFAULT_LOCALCACHE_HINT = "infinispan/local";
53   
54    /**
55    * We read the cache configuration data only from the XWiki configuration file. We don't look for cache
56    * configuration in other sources (such as in the XWikiPreferences page for example) since the cache configuration
57    * is farm wide and shouldn't be overridden in wikis. In addition that would cause some cyclic dependency since the
58    * configuration source would look for config data in wiki pages thus calling the cache store which in turn would
59    * call this class again.
60    */
61    @Inject
62    @Named("xwikiproperties")
63    private ConfigurationSource configuration;
64   
 
65  1334 toggle @Override
66    public String getDefaultCache()
67    {
68  1334 return this.configuration.getProperty(PREFIX + "defaultCache", DEFAULT_CACHE_HINT);
69    }
70   
 
71  6 toggle @Override
72    public String getDefaultLocalCache()
73    {
74  6 return this.configuration.getProperty(PREFIX + "defaultLocalCache", DEFAULT_LOCALCACHE_HINT);
75    }
76    }