Package eu.planets_project.tb.api.persistency

Examples of eu.planets_project.tb.api.persistency.TestbedServiceTemplatePersistencyRemote


     */
    public static TestbedServiceTemplatePersistencyRemote getInstance() {
        Log log = LogFactory.getLog(TestbedServiceTemplatePersistencyImpl.class);
        try {
            Context jndiContext = new javax.naming.InitialContext();
            TestbedServiceTemplatePersistencyRemote dao_r = (TestbedServiceTemplatePersistencyRemote) PortableRemoteObject
                    .narrow(jndiContext
                            .lookup("testbed/TestbedServiceTemplatePersistencyImpl/remote"),
                            TestbedServiceTemplatePersistencyRemote.class);
            return dao_r;
        } catch (NamingException e) {
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.api.persistency.TestbedServiceTemplatePersistencyRemote

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.