Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for verifyCrudMode (0.5 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

         * @param id The ID.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse details(final int crudMode, final String id) {
            verifyCrudMode(crudMode, CrudMode.DETAILS, this::asListHtml);
            saveToken();
            return asDetailsHtml().useForm(EditForm.class, op -> {
                op.setup(form -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

         * @return HTML response for the details page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse details(final int crudMode, final String id) {
            verifyCrudMode(crudMode, CrudMode.DETAILS, this::asListHtml);
            saveToken();
            return asHtml(path_AdminLabeltype_AdminLabeltypeDetailsJsp).useForm(EditForm.class, op -> {
                op.setup(form -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         *
         * @param crudMode the actual CRUD mode
         * @param expectedMode the expected CRUD mode
         * @param errorHook the error hook to call if verification fails
         */
        protected void verifyCrudMode(final int crudMode, final int expectedMode, final VaErrorHook errorHook) {
            if (crudMode != expectedMode) {
                throwValidationError(messages -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top