All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.PropertiesConfiguration Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools;

/**
 * Base class for other Configuration classes.
 *
 */
public interface PropertiesConfiguration {
    
    /**
     * Sets a property value
     * 
     * @param name
     * @param value
     */
    public void setProperty(String name,
                            String value);

    /**
     * Gets a property value
     * 
     * @param name
     * @return
     */
    public String getProperty(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy