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

org.jolokia.support.spring.SystemPropertyMode Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.jolokia.support.spring;

/*
 * Copyright 2009-2013 Roland Huss
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * Enumeration for how to handle system properties when configuring a {@link SpringJolokiaAgent}.
 *
 * @author roland
 * @since 01.01.13
 */
public enum SystemPropertyMode {
    /** Never check system properties. */
    NEVER("never"),

    /**
     * Check system properties if not resolvable in the specified properties.
     * This is the default.
     */
    FALLBACK("fallback"),

    /**
     * Check system properties first, before trying the specified properties.
     * This allows system properties to override any other property source.
     */
    OVERRIDE("override");

    // Mode as it can be provided in the configuration
    private final String mode;

    SystemPropertyMode(String pMode) {
        mode = pMode;
    }

    /**
     * Get the enum for a given mode string, which is treated case insensitively.
     *
     * @param pMode mode to lookup
     * @return the mode or null if none could be found
     */
    public static SystemPropertyMode fromMode(String pMode) {
        if (pMode != null) {
            for (SystemPropertyMode m : SystemPropertyMode.values()) {
                if (m.mode.equals(pMode.toLowerCase())) {
                    return m;
                }
            }
        }
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy