| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
package org.itracker.model.util; |
| 20 |
|
|
| 21 |
|
import java.io.IOException; |
| 22 |
|
import java.io.InputStream; |
| 23 |
|
import java.util.Properties; |
| 24 |
|
|
| 25 |
|
import org.apache.log4j.Logger; |
| 26 |
|
|
|
|
|
| 0% |
Uncovered Elements: 33 (33) |
Complexity: 13 |
Complexity Density: 0.72 |
|
| 27 |
|
public class PropertiesFileHandler { |
| 28 |
|
private Properties props; |
| 29 |
|
private final Logger logger; |
| 30 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 31 |
0
|
public PropertiesFileHandler() {... |
| 32 |
0
|
this.logger = Logger.getLogger(getClass()); |
| 33 |
0
|
props = new Properties(); |
| 34 |
|
} |
| 35 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 36 |
0
|
public PropertiesFileHandler(String resource) {... |
| 37 |
0
|
this(); |
| 38 |
0
|
addProperties(resource); |
| 39 |
|
} |
| 40 |
|
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 7 |
Complexity Density: 0.7 |
|
| 41 |
0
|
public void addProperties(String resource) {... |
| 42 |
0
|
if(resource == null || resource.equals("") || ! resource.endsWith(".properties")) { |
| 43 |
0
|
if (logger.isInfoEnabled()) { |
| 44 |
0
|
logger.info("addProperties: skip " +resource); |
| 45 |
|
} |
| 46 |
0
|
return; |
| 47 |
|
} |
| 48 |
|
|
| 49 |
0
|
try { |
| 50 |
0
|
InputStream is = getClass().getResourceAsStream(resource); |
| 51 |
0
|
if(is != null) { |
| 52 |
0
|
props.load(is); |
| 53 |
|
} else { |
| 54 |
0
|
logger.debug("No properties resource, " + resource + " was found."); |
| 55 |
|
} |
| 56 |
|
} catch(IOException ioe) { |
| 57 |
0
|
logger.warn("Could not load properties resource: " + resource, ioe); |
| 58 |
|
} |
| 59 |
|
} |
| 60 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
public Properties getProperties() {... |
| 62 |
0
|
return (Properties) props.clone(); |
| 63 |
|
} |
| 64 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 65 |
0
|
public String getProperty(String name) {... |
| 66 |
0
|
return props.getProperty(name); |
| 67 |
|
} |
| 68 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 69 |
0
|
public boolean hasProperty(String name) {... |
| 70 |
0
|
return props.containsKey(name); |
| 71 |
|
} |
| 72 |
|
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 1 |
|
| 73 |
0
|
public boolean hasProperties() {... |
| 74 |
0
|
return (props.size() > 0 ? true : false); |
| 75 |
|
} |
| 76 |
|
} |