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

org.globus.gsi.VersionUtil Maven / Gradle / Ivy

The newest version!
package org.globus.gsi;

public class VersionUtil {

    /**
     * Checks if GSI-3 mode is enabled.
     *
     * @return true if "org.globus.gsi.version" system property
     *         is set to "3". Otherwise, false.
     */
    public static boolean isGsi3Enabled() {
        String ver = System.getProperty("org.globus.gsi.version");
        return (ver != null && ver.equals("3"));
    }

    /**
     * Checks if GSI-2 mode is enabled.
     *
     * @return true if "org.globus.gsi.version" system property
     *         is set to "2". Otherwise, false.
     */
    public static boolean isGsi2Enabled() {
        String ver = System.getProperty("org.globus.gsi.version");
        return (ver != null && ver.equals("2"));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy