Package eu.planets_project.tb.api.system

Examples of eu.planets_project.tb.api.system.TestbedStatelessAdmin


     * @return A reference to this EJB.
     */
    public static TestbedStatelessAdmin getTestbedAdminBean() {
        try{
            Context jndiContext = new javax.naming.InitialContext();
            TestbedStatelessAdmin um = (TestbedStatelessAdmin)
                jndiContext.lookup("planets-project.eu/tb/TestbedAdminBean");
            return um;
        }catch (NamingException e) {
            log.error("Failure during lookup of the local TestbedStatelessAdmin: "+e.toString());
            return null;
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.api.system.TestbedStatelessAdmin

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.