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

File DefaultRemoteObservationManagerConfiguration.java

 

Coverage histogram

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

Code metrics

4
5
3
1
72
35
5
1
1.67
3
1.67

Classes

Class Line # Actions
DefaultRemoteObservationManagerConfiguration 41 5 0% 5 1
0.916666791.7%
 

Contributing tests

This file is covered by 59 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.observation.remote.internal;
21   
22    import java.util.Collections;
23    import java.util.List;
24   
25    import javax.inject.Inject;
26    import javax.inject.Named;
27    import javax.inject.Singleton;
28   
29    import org.xwiki.component.annotation.Component;
30    import org.xwiki.configuration.ConfigurationSource;
31    import org.xwiki.observation.remote.RemoteObservationManagerConfiguration;
32   
33    /**
34    * Provide remote events specific configuration.
35    *
36    * @version $Id: 382cb3d82d0d3a968cbbfecb67d860b4f119b34f $
37    * @since 2.0M3
38    */
39    @Component
40    @Singleton
 
41    public class DefaultRemoteObservationManagerConfiguration implements RemoteObservationManagerConfiguration
42    {
43    /**
44    * USed to access configuration storage.
45    */
46    @Inject
47    @Named("xwikiproperties")
48    private ConfigurationSource configurationSource;
49   
 
50  192 toggle @Override
51    public boolean isEnabled()
52    {
53  192 Boolean enabled = this.configurationSource.getProperty("observation.remote.enabled", Boolean.class);
54   
55  192 return enabled != null ? enabled : false;
56    }
57   
 
58  5 toggle @Override
59    @SuppressWarnings("unchecked")
60    public List<String> getChannels()
61    {
62  5 List<String> channels = this.configurationSource.getProperty("observation.remote.channels", List.class);
63   
64  5 return channels == null ? Collections.<String>emptyList() : channels;
65    }
66   
 
67  5 toggle @Override
68    public String getNetworkAdapter()
69    {
70  5 return this.configurationSource.getProperty("observation.remote.networkadapter", "jgroups");
71    }
72    }