Package org.rhq.core.system.windows.RegistryEntry

Examples of org.rhq.core.system.windows.RegistryEntry.Root


        if (!isCorrectTestPlatform("testRegistry")) {
            return;
        }

        WindowsNativeSystemInfo platform = (WindowsNativeSystemInfo) SystemInfoFactory.createSystemInfo();
        Root root = RegistryEntry.Root.HKEY_LOCAL_MACHINE;
        String baseKey = "SOFTWARE\\Microsoft";
        List<String> keys = platform.getRegistryChildKeys(root, baseKey);

        System.out.println("Child registry keys of: " + keys);
        assert keys.size() > 0;
View Full Code Here

TOP

Related Classes of org.rhq.core.system.windows.RegistryEntry.Root

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.