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

hudson.plugins.ec2.ebs.ZPoolExpandNotice Maven / Gradle / Ivy

package hudson.plugins.ec2.ebs;

import hudson.model.AdministrativeMonitor;
import hudson.Extension;

/**
 * {@link AdministrativeMonitor} that tells the user that ZFS pool is filling up
 * and they need to add more storage.
 *
 * @author Kohsuke Kawaguchi
 */
@Extension
public class ZPoolExpandNotice extends AdministrativeMonitor {
    /**
     * Set by {@link ZPoolMonitor}.
     */
    /*package*/ boolean activated = false;

    public ZPoolExpandNotice() {
        super("zpool.ebs");
    }

    public boolean isActivated() {
        return activated;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy