Examples of validateInsertionDelay()


Examples of net.pterodactylus.sone.core.Preferences.validateInsertionDelay()

        String showCustomAvatars = request.getHttpRequest().getPartAsStringFailsafe("show-custom-avatars", 32);
        currentSone.getOptions().<ShowCustomAvatars> getEnumOption("ShowCustomAvatars").set(ShowCustomAvatars.valueOf(showCustomAvatars));
        webInterface.getCore().touchConfiguration();
      }
      Integer insertionDelay = Numbers.safeParseInteger(request.getHttpRequest().getPartAsStringFailsafe("insertion-delay", 16));
      if (!preferences.validateInsertionDelay(insertionDelay)) {
        fieldErrors.add("insertion-delay");
      } else {
        preferences.setInsertionDelay(insertionDelay);
      }
      Integer postsPerPage = Numbers.safeParseInteger(request.getHttpRequest().getPartAsStringFailsafe("posts-per-page", 4), null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.