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

org.coos.messaging.Configurable Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
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);



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy