Example usage for org.apache.commons.discovery.tools ManagedProperties getProperty

List of usage examples for org.apache.commons.discovery.tools ManagedProperties getProperty

Introduction

In this page you can find the example usage for org.apache.commons.discovery.tools ManagedProperties getProperty.

Prototype

public static String getProperty(String propertyName) 

Source Link

Document

Get value for property bound to the current thread context class loader.

Usage

From source file:org.apache.axis.AxisProperties.java

/**
 * Get value for property bound to the current thread context class loader.
 *
 * @param propertyName property name.// ww w .  j  a  va 2s  . co  m
 * @return property value if found, otherwise default.
 */
public static String getProperty(String propertyName) {
    return ManagedProperties.getProperty(propertyName);
}