File file = new File(arguments[9] + ".backup");
if (file.exists() && file.delete()) {
getLogger().info("HSQLDB backup file has been deleted.");
}
RunnableManager runnableManager = null;
try
{
this.getLogger().debug("Intializing hsqldb server thread");
runnableManager = (RunnableManager)m_serviceManager.lookup(RunnableManager.ROLE);
runnableManager.execute( m_daemonThreadPoolName, this );
}
catch( final ServiceException se )
{
throw new CascadingRuntimeException( "Cannot get RunnableManager", se );
}