org.mobicents.smsc.server.bootstrap.TestVersion Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright XXXX, Red Hat Middleware LLC, and individual contributors as indicated
* by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a full listing
* of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU General Public License, v. 2.0.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License,
* v. 2.0 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
package org.mobicents.smsc.server.bootstrap;
import java.io.InputStream;
import java.util.Collections;
import java.util.Map;
import java.util.Properties;
/**
* TestVersion class reads the version.properties packaged with media-server.jar
* for run time display of Media Server TestVersion
*
* @author amit.bhayani
*
*/
public final class TestVersion {
/**
* The single instance.
*/
public final static TestVersion instance = new TestVersion();
/**
* The version properties.
*/
private Properties props;
/**
* Do not allow direct public construction.
*/
private TestVersion() {
props = loadProperties();
}
/**
* Returns an unmodifiable map of version properties.
*
* @return
*/
public Map getProperties() {
return Collections.unmodifiableMap(props);
}
/**
* Returns the value for the given property name.
*
* @param name
* - The name of the property.
* @return The property value or null if the property is not set.
*/
public String getProperty(final String name) {
return props.getProperty(name);
}
/**
* Returns the version information as a string.
*
* @return Basic information as a string.
*/
public String toString() {
StringBuilder sb = new StringBuilder("RestComm SMSC Test Server: ");
boolean first = true;
for (Object key : props.keySet()) {
if (first) {
first = false;
} else {
sb.append(",");
}
sb.append(key).append('=').append(props.get(key));
}
return sb.toString();
}
/**
* Load the version properties from a resource.
*/
private Properties loadProperties() {
props = new Properties();
try {
InputStream in = TestVersion.class.getResourceAsStream("version.properties");
props.load(in);
in.close();
} catch (Exception e) {
throw new Error("Missing version.properties");
}
return props;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy