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

ru.yandex.qatools.camelot.api.AppConfig Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package ru.yandex.qatools.camelot.api;

/**
 * The interface to use the global configuration options
 *
 * @author Ilya Sadykov (mailto: [email protected])
 */
public interface AppConfig {

    /**
     * Get string option
     */
    String getProperty(String key);

    /**
     * Get integer option
     */
    int getInt(String key);

    /**
     * Get long option
     */
    long getLong(String key);

    /**
     * Get double option
     */
    double getDouble(String key);

    /**
     * Get boolean option
     */
    boolean getBoolean(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy