Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for Cole (0.02 sec)

  1. AdminRelatedcontentAction.java

    @Override L67: protected String getActionRole() { L68: return ROLE; L69: } L70: L71: // =================================================================================== L72: // Search Execute L73: // ============== L74: @Execute L75: @Secured({ ROLE, ROLE + VIEW }) L76: public HtmlResponse index() { L77: return asListHtml();...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.2K bytes
  2. AdminBoostdocAction.java

    }); L91: } L92: L93: @Execute L94: @Secured({ ROLE, ROLE + VIEW }) L95: public HtmlResponse search(final SearchForm form) { L96: copyBeanToBean(form, boostDocPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); L97: return asHtml(path_AdminBoostdoc_AdminBoostdocJsp).renderWith(data -> { L98: searchPaging(data, form); L99: }); L100: } L101: L102: @Execute L103: @Secured({ ROLE, ROLE + VIEW }) L104: public HtmlResponse reset(final SearchForm...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.1K bytes
  3. AdminFileauthAction.java

    @Override L78: protected String getActionRole() { L79: return ROLE; L80: } L81: L82: // =================================================================================== L83: // Search Execute L84: // ============== L85: @Execute L86: @Secured({ ROLE, ROLE + VIEW }) L87: public HtmlResponse index() { L88: return asListHtml();...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  4. AdminReqheaderAction.java

    L101: } L102: L103: @Execute L104: @Secured({ ROLE, ROLE + VIEW }) L105: public HtmlResponse search(final SearchForm form) { L106: copyBeanToBean(form, reqHeaderPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); L107: return asHtml(path_AdminReqheader_AdminReqheaderJsp).renderWith(data -> { L108: searchPaging(data, form); L109: }); L110: } L111: L112: @Execute L113: @Secured({ ROLE, ROLE + VIEW }) L114: public HtmlResponse reset(final SearchForm...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.6K bytes
  5. AdminSchedulerAction.java

    L98: } L99: L100: @Execute L101: @Secured({ ROLE, ROLE + VIEW }) L102: public HtmlResponse search(final SearchForm form) { L103: copyBeanToBean(form, schedulerPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); L104: return asHtml(path_AdminScheduler_AdminSchedulerJsp).renderWith(data -> { L105: searchPaging(data, form); L106: }); L107: } L108: L109: @Execute L110: @Secured({ ROLE, ROLE + VIEW }) L111: public HtmlResponse reset(final SearchForm...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      18.1K bytes
  6. RoleQueryHelper.java

    values[1].split(roleSeparator); L269: for (final String role : roles) { L270: if (StringUtil.isNotEmpty(role)) { L271: roleSet.add(role); L272: } L273: } L274: } L275: } else { L276: final String[] roles = rolesStr.split(roleSeparator); L277: for (final String role : roles) { L278: if (StringUtil.isNotEmpty(role)) { L279: roleSet.add(role); L280: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      11.5K bytes
  7. FessFunctions.java

    locale, key).orElse(defaultValue); L426: } L427: L428: public static boolean hasActionRole(final String role) { L429: final String[] roles; L430: if (role.endsWith(FessAdminAction.VIEW)) { L431: roles = new String[] { role, role.substring(0, role.length() - FessAdminAction.VIEW.length()) }; L432: } else { L433: roles = new String[] { role }; L434: } L435: final FessLoginAssist loginAssist = ComponentUtil.getComponent(FessLoginAssist.class);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  8. AdminStorageAction.java

    etOnlineHelpNameStorage())); L73: } L74: L75: @Override L76: protected String getActionRole() { L77: return ROLE; L78: } L79: L80: @Execute L81: @Secured({ ROLE, ROLE + VIEW }) L82: public HtmlResponse index() { L83: saveToken(); L84: return asListHtml(StringUtil.EMPTY); L85: } L86: L87: @Execute L88: @Secured({ ROLE, ROLE + VIEW }) L89: public ActionResponse list(final OptionalThing<String> id) { L90: saveToken(); L91: return i...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      19.9K bytes
  9. AdminBackupAction.java

    .getOnlineHelpNameBackup())); L118: } L119: L120: @Override L121: protected String getActionRole() { L122: return ROLE; L123: } L124: L125: @Execute L126: @Secured({ ROLE, ROLE + VIEW }) L127: public HtmlResponse index() { L128: saveToken(); L129: return asListHtml(); L130: } L131: L132: @Execute L133: @Secured({ ROLE }) L134: public HtmlResponse upload(final UploadForm form) { L135: validate(form, messages -> {}, this::asListHtml); L136:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  10. AdminMaintenanceAction.java

    @Override L82: protected String getActionRole() { L83: return ROLE; L84: } L85: L86: // =================================================================================== L87: // Search Execute L88: // ============== L89: L90: @Execute L91: @Secured({ ROLE, ROLE + VIEW }) L92: public HtmlResponse index() { L93: saveToken();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      14K bytes
Back to top