* @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());
}