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

com.version1.webdriver.configuration.JmxConfig Maven / Gradle / Ivy

package com.version1.webdriver.configuration;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * A simple representation class for JMX configuration
 */
public class JmxConfig {

    private boolean isEnabled = false;

    /**
    *
    * @return boolean configuring enable in JMX config
    */
    public boolean isEnabled() {
        return isEnabled;
    }

    /**
    *
    * @param enabled boolean configuring enabled in JMX config
    */
    @JsonProperty("enabled")
    public void setEnabled(boolean enabled) {
        isEnabled = enabled;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy