Interface ApplicationSettingsMBean

    • Method Detail

      • getAccessDeniedPage

        String getAccessDeniedPage()
        Gets the access denied page class.
        Returns:
        Returns the accessDeniedPage.
        See Also:
        ApplicationSettings.getAccessDeniedPage()
      • getClassResolver

        String getClassResolver()
        Gets the default resolver to use when finding classes
        Returns:
        Default class resolver
      • getDefaultMaximumUploadSize

        String getDefaultMaximumUploadSize()
        Gets the default maximum size for uploads. This is used by Form.getMaxSize() if no value is explicitly set through Form.setMaxSize(Bytes).
        Returns:
        the default maximum size for uploads
      • getInternalErrorPage

        String getInternalErrorPage()
        Gets internal error page class.
        Returns:
        Returns the internalErrorPage.
        See Also:
        ApplicationSettings.getInternalErrorPage()
      • getPageExpiredErrorPage

        String getPageExpiredErrorPage()
        Gets the page expired page class.
        Returns:
        Returns the pageExpiredErrorPage.
        See Also:
        ApplicationSettings.getPageExpiredErrorPage()
      • setDefaultMaximumUploadSize

        void setDefaultMaximumUploadSize​(String defaultUploadSize)
        Sets the default maximum size for uploads. This is used by Form.getMaxSize() if no value is explicitly set through Form.setMaxSize(Bytes). The String value should be a floating point value followed by K, M, G or T for kilobytes, megabytes, gigabytes or terabytes, respectively. The abbreviations KB, MB, GB and TB are also accepted. Matching is case insensitive.
        Parameters:
        defaultUploadSize - the default maximum size for uploads