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

twitter4jads.conf.ConfigurationFactory Maven / Gradle / Ivy

The newest version!
package twitter4jads.conf;

/**
 *
 */
public interface ConfigurationFactory {
    /**
     * returns the root configuration
     *
     * @return root configuration
     */
    Configuration getInstance();

    /**
     * returns the configuration specified by the path
     *
     * @param configTreePath the path
     * @return the configuratoin
     */
    Configuration getInstance(String configTreePath);

    /**
     * clean up resources acquired by this factory.
     */
    void dispose();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy