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

org.bidib.wizard.common.model.settings.LocalHostSettingsInterface Maven / Gradle / Ivy

package org.bidib.wizard.common.model.settings;

import org.bidib.wizard.api.model.bean.ObservableBean;

public interface LocalHostSettingsInterface extends ObservableBean, SettingsInterface {

    static final String PROPERTY_LOCALHOST_CLIENT_ENABLED = "localHostClientEnabled";

    static final String PROPERTY_LOCALHOST_SERVICE_ENABLED = "localHostServiceEnabled";

    /**
     * @return the localHostClientEnabled flag
     */
    boolean isLocalHostClientEnabled();

    /**
     * @param localHostClientEnabled
     *            the localHostClientEnabled flag to set
     */
    void setLocalHostClientEnabled(boolean localHostClientEnabled);


    /**
     * @return the localHostServiceEnabled flag
     */
    boolean isLocalHostServiceEnabled();

    /**
     * @param localHostServiceEnabled
     *            the localHostServiceEnabled flag to set
     */
    void setLocalHostServiceEnabled(boolean localHostServiceEnabled);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy