1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package com.xpn.xwiki.internal.skin

File InternalSkinConfiguration.java

 

Coverage histogram

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

Code metrics

4
6
4
1
67
34
6
1
1.5
4
1.5

Classes

Class Line # Actions
InternalSkinConfiguration 36 6 0% 6 1
0.928571492.9%
 

Contributing tests

This file is covered by 33 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 com.xpn.xwiki.internal.skin;
21   
22    import javax.inject.Inject;
23    import javax.inject.Named;
24    import javax.inject.Singleton;
25   
26    import org.apache.commons.lang3.StringUtils;
27    import org.xwiki.component.annotation.Component;
28    import org.xwiki.configuration.ConfigurationSource;
29   
30    /**
31    * @version $Id: 5cec3b3c930e9ad1f5f3b69491e5e9ab6d2e931a $
32    * @since 6.4M1
33    */
34    @Component(roles = InternalSkinConfiguration.class)
35    @Singleton
 
36    public class InternalSkinConfiguration
37    {
38    public static final String DEFAULT_SKIN = "flamingo";
39   
40    @Inject
41    @Named("xwikicfg")
42    private ConfigurationSource xwikicfg;
43   
 
44  2408 toggle public String getDefaultParentSkinId()
45    {
46  2413 return getDefaultParentSkinId(null);
47    }
48   
 
49  2391 toggle public String getDefaultParentSkinId(String def)
50    {
51  2399 String baseskin = this.xwikicfg.getProperty("xwiki.defaultbaseskin", def);
52   
53  2423 return StringUtils.isNotEmpty(baseskin) ? baseskin : null;
54    }
55   
 
56  10523 toggle public String getDefaultSkinId()
57    {
58  10523 return getDefaultSkinId(DEFAULT_SKIN);
59    }
60   
 
61  10515 toggle public String getDefaultSkinId(String def)
62    {
63  10518 String skin = this.xwikicfg.getProperty("xwiki.defaultskin", def);
64   
65  10518 return StringUtils.isNotEmpty(skin) ? skin : null;
66    }
67    }