package org.simantics.db; import org.simantics.db.exception.InternalException; public interface DatabaseUserAgent { /** * Tries to fix errors encountered during server startup. * * @param exception to fix before server can be started. * @return true if successful. */ public boolean handleStart(InternalException exception); String getId(); }