Methods Summary |
---|
protected void | createService()
super.createService();
try
{
if (createMethod != null) createMethod.invoke(delegate);
}
catch (InvocationTargetException e)
{
Throwable t = e.getCause();
if (t instanceof Exception) throw (Exception)t;
else throw new RuntimeException(t);
}
|
protected void | destroyService()
super.destroyService();
try
{
if (destroyMethod != null) destroyMethod.invoke(delegate);
}
catch (InvocationTargetException e)
{
Throwable t = e.getCause();
if (t instanceof Exception) throw (Exception)t;
else throw new RuntimeException(t);
}
|
public org.jboss.ejb3.statistics.InvocationStatistics | getInvokeStats()
return ((Container) delegate).getInvokeStats();
|
public javax.ejb.TimerService | getTimerService(java.lang.Object pKey)
return ((Container) delegate).getTimerService(pKey);
|
protected void | startService()
super.startService();
try
{
if (startMethod != null) startMethod.invoke(delegate);
}
catch (InvocationTargetException e)
{
Throwable t = e.getCause();
if (t instanceof Exception) throw (Exception)t;
else throw new RuntimeException(t);
}
|
protected void | stopService()
super.stopService();
try
{
if (stopMethod != null) stopMethod.invoke(delegate);
}
catch (InvocationTargetException e)
{
Throwable t = e.getCause();
if (t instanceof Exception) throw (Exception)t;
else throw new RuntimeException(t);
}
|