27282930313233
/** * Adds a listener for the current class * @param listener is the new listener */ public void addInstanceLifeCycleListener(Object listener) { throw new SpeedoRuntimeException("Dynamic listener adding is not supported in EJB personality of Speedo"); }
35363738394041
/** * Remove a listener for the current class * @param listener is the listener to forget */ public void removeInstanceLifeCycleListener(Object listener) { throw new SpeedoRuntimeException("Dynamic listener removing is not supported in EJB personality of Speedo"); }
787980818283848586
pool = (Pool) o; else if (RESOUCE_ADAPTER_BINDINNG.equals(s)) try { setConnectionFactory(o); } catch (PException e) { throw new SpeedoRuntimeException( "Impossible to assign the connection factory to the mapper", e); } }
9293949596979899100
pool = null; else if (RESOUCE_ADAPTER_BINDINNG.equals(s)) try { setConnectionFactory(null); } catch (PException e) { throw new SpeedoRuntimeException( "Impossible to remove the connection factory to the mapper", e); } }