public void stopHttpServer(HttpServer httpServer) { try { httpServer.stop(true); } catch (InterruptedException ie) { SysLog.logThrowable(ie); } SysLog.logInfo("http server was stopped"); }
public void setEmailAddress(EmailAddress emailAddress) { if (client != null) { client.setEmailAddress(emailAddress); } else { SysLog.logError("attempted to set email address to null client"); } }
public static void requestStop() { SysLog.logInfo("setting stop signal for http server"); synchronized (instance) { isToStop = true; instance.notify(); } }
/** Public singleton access method. */ public static synchronized PhotoFactory getInstance() { if (instance == null) { SysLog.logInfo("setting generic PhotoFactory"); setInstance(new PhotoFactory()); } return instance; }
public void startHttpServer(HttpServer httpServer) throws Exception { httpServer.start(); SysLog.logInfo("http server was started"); }