public void ejbTimeout(final Timer timer) {
testAllowedOperations("ejbTimeout");
try {
final String name = (String) timer.getInfo();
final TimerSync timerSync = (TimerSync) ejbContext.lookup("TimerSyncBeanBusinessRemote");
timerSync.countDown(name);
} catch (final Exception e) {
e.printStackTrace();
}
}