Examples of ItfListenerLoggerAccess


Examples of org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.callbacklogger.ItfListenerLoggerAccess

     * @param lifecycleEvent the event name;
     * @param f the form.
     * @param listenerClassName the listener class.
     */
    public static void insertEntity(final CallbackType lifecycleEvent, final Form f, final String listenerClassName) {
        final ItfListenerLoggerAccess slsbFormManager;
        try {
            slsbFormManager = EJBHelper.getBeanRemoteInstance(SLSBListenerLoggerAccess.class,
                    ItfListenerLoggerAccess.class);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        slsbFormManager.insertCallbackLogger(f.getClass().getName(), lifecycleEvent, listenerClassName, f.getId());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.