コード例 #1
0
 /** Skips initial setup, advancing to the license screen. This is only available in DEV mode. */
 public static void skip() {
   if (!Play.mode.isDev()) {
     forbidden();
   }
   checkCompleteAndLicensed();
   SetupUtils.markSetupComplete();
   license();
 }
コード例 #2
0
 /**
  * Completes initial setup with the given configuration properties.
  *
  * @param properties the properties to update.
  */
 private static void completeInitialSetup(Map<String, String> properties) {
   SetupUtils.markSetupComplete();
   ConfigPropertyUtils.saveProperties(BourneUtil.getSysClient(), properties);
   complete();
 }