Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
23   113   15   2.09
6   69   0.65   11
11     1.36  
1    
 
  PluginConfig       Line # 39 23 0% 15 40 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2006-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16   
17    package org.kuali.rice.kew.plugin;
18   
19    import org.kuali.rice.core.api.config.property.Config;
20    import org.kuali.rice.core.impl.config.property.BaseConfig;
21   
22    import java.io.File;
23    import java.net.MalformedURLException;
24    import java.net.URL;
25    import java.util.ArrayList;
26    import java.util.HashMap;
27    import java.util.List;
28    import java.util.Map;
29    import java.util.Properties;
30   
31    /**
32    * Class representing a plugin's config, containing configuration
33    * settings parsed from the config.
34    *
35    * @see Config
36    *
37    * @author Kuali Rice Team (rice.collab@kuali.org)
38    */
 
39    public class PluginConfig extends BaseConfig {
40   
41    private String resourceLoaderClassname;
42    private List listeners = new ArrayList();
43    private Properties parentProperties;
44    private Map parentObjects;
45    private Config parentConfig;
46   
 
47  0 toggle public PluginConfig(URL url, Config parentConfig) {
48  0 super(url.toString());
49  0 this.parentProperties = parentConfig.getProperties();
50  0 this.parentObjects = parentConfig.getObjects();
51  0 this.parentConfig = parentConfig;
52    }
53   
 
54  0 toggle public PluginConfig(File configFile, Config parentConfig) throws MalformedURLException {
55  0 this(configFile.toURI().toURL(), parentConfig);
56    }
57   
58   
 
59  0 toggle public Properties getBaseProperties() {
60  0 return this.parentProperties;
61    }
62   
 
63  0 toggle public Map getBaseObjects() {
64  0 return this.parentObjects;
65    }
66   
 
67  0 toggle public void addListener(String listenerClass) {
68  0 listeners.add(listenerClass);
69    }
70   
 
71  0 toggle public List getListeners() {
72  0 return listeners;
73    }
74   
 
75  0 toggle public void setResourceLoaderClassname(String resourceLoaderClassname) {
76  0 this.resourceLoaderClassname = resourceLoaderClassname;
77    }
78   
 
79  0 toggle public String getResourceLoaderClassname() {
80  0 return resourceLoaderClassname;
81    }
82   
 
83  0 toggle public String toString() {
84  0 return "[PluginConfig: resourceLoaderClassname: " + getResourceLoaderClassname() + "]";
85    }
86   
87   
 
88  0 toggle @Override
89    public Object getObject(String key) {
90  0 Object object = super.getObject(key);
91  0 if (object == null && parentConfig != null) {
92  0 object = parentConfig.getObject(key);
93    }
94  0 return object;
95    }
96   
 
97  0 toggle @Override
98    public Map<String, Object> getObjects() {
99  0 Map<String, Object> finalObjects = new HashMap<String, Object>(super.getObjects());
100  0 if (parentConfig != null) {
101  0 Map<String, Object> parentObjects = parentConfig.getObjects();
102  0 for (String key : parentObjects.keySet()) {
103  0 if (!finalObjects.containsKey(key)) {
104  0 finalObjects.put(key, parentObjects.get(key));
105    }
106    }
107    }
108   
109  0 return finalObjects;
110    }
111   
112   
113    }