public void run() {
try {
if( adminPort > 0 ){
log.debug( "Starting admin interface on port {}", adminPort );
adminInterface = new AdminHandler( this, "localhost", adminPort );
adminInterface.start();
} else
log.debug( "No admin-port defined, not starting admin interface!" );
} catch (Exception e){
e.printStackTrace();