org.coos.messaging.Configurable Maven / Gradle / Ivy
package org.coos.messaging;
import java.util.Hashtable;
public interface Configurable {
public Hashtable getProperties();
/**
* Sets the properties of this processor
*
* @param properties
* the properties
*/
public void setProperties(Hashtable properties);
public void setProperty(String key, String value);
public String getProperty(String key);
}