Package com.google.gerrit.server.schema

Examples of com.google.gerrit.server.schema.UpdateUI


      this.browser = browser;
    }

    void upgradeSchema() throws OrmException {
      final List<String> pruneList = new ArrayList<String>();
      schemaUpdater.update(new UpdateUI() {
        @Override
        public void message(String msg) {
          System.err.println(msg);
          System.err.flush();
        }
View Full Code Here


          config.getEnum("site", null, "upgradeSchemaOnStartup",
              SchemaUpgradePolicy.OFF);
      if (policy == SchemaUpgradePolicy.AUTO
          || policy == SchemaUpgradePolicy.AUTO_NO_PRUNE) {
        final List<String> pruneList = new ArrayList<String>();
        updater.update(new UpdateUI() {
          @Override
          public void message(String msg) {
            log.info(msg);
          }
View Full Code Here

TOP

Related Classes of com.google.gerrit.server.schema.UpdateUI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.