Package eu.planets_project.tb.api.persistency

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


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

TOP

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

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.