Package org.focusns.model.env

Examples of org.focusns.model.env.EnvironmentOS


    protected Environment lookupOS() {
        if (envOS == null) {
            Properties props = System.getProperties();
            Map<String, String> env = System.getenv();
            //
            envOS = new EnvironmentOS();
            envOS.setOsName(props.getProperty("os.name"));
            envOS.setOsVersion(props.getProperty("os.version"));
            envOS.setOsArch(props.getProperty("os.arch"));
            envOS.setOsPatch(props.getProperty("sun.os.patch.level"));
            envOS.setOsPath(env.get("Path"));
View Full Code Here

TOP

Related Classes of org.focusns.model.env.EnvironmentOS

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.