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

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

Introduction

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

Prototype

public static void setProperty(String propertyName, String value) 

Source Link

Document

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

Usage

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

/**
 * Set value for property bound to the current thread context class loader.
 * @param propertyName property name/*from  w  w  w. j  a va 2 s .  c om*/
 * @param value property value (non-default)  If null, remove the property.
 */
public static void setProperty(String propertyName, String value) {
    ManagedProperties.setProperty(propertyName, value);
}