Package org.rioproject.system.capability.software

Examples of org.rioproject.system.capability.software.J2SESupport


            platforms.add(operatingSystem);

            PlatformCapability tcpIP = new TCPConnectivity();
            platforms.add(tcpIP);

            PlatformCapability j2se = new J2SESupport();
            platforms.add(j2se);

            List<PlatformCapability> platformCapabilityList = new ArrayList<PlatformCapability>();
            PlatformCapability[] pCaps = (PlatformCapability[])config.getEntry(COMPONENT,
                                                                               "platformCapabilities",
View Full Code Here


        SystemMemory systemMemory  = getCapability(SystemMemory.class, pCaps);
        Assert.assertNotNull(systemMemory);
        log(systemMemory);

        J2SESupport java  = getCapability(J2SESupport.class, pCaps);
        Assert.assertNotNull(java);
        log(java);
    }
View Full Code Here

TOP

Related Classes of org.rioproject.system.capability.software.J2SESupport

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.