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

org.mule.util.PropertyChecker Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.util;

/**
 *  Class to check that system properties are enabled or not, the latter being the default.
 *
 *  @since 3.6.0
 */
public class PropertyChecker
{
    private final String propertyName;
    private Boolean override;

    public PropertyChecker(String propertyName)
    {
        this.propertyName = propertyName;
    }

    public boolean isEnabled()
    {
        if (override == null)
        {
            return Boolean.getBoolean(propertyName);
        }
        else
        {
            return override;
        }
    }

    public void setOverride(Boolean override)
    {
        this.override = override;
    }

    public void removeOverride()
    {
        this.override = null;
    }
    public String getPropertyName()
    {
        return propertyName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy