Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getElevateWord (0.05 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
            validate(form, messages -> {}, this::asListHtml);
            final String id = form.id;
            elevateWordService.getElevateWord(id).ifPresent(entity -> {
                copyBeanToBean(entity, form, copyOp -> {
                    copyOp.excludeNull();
                    copyOp.exclude(Constants.PERMISSIONS);
                });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

         *
         * @param id the unique identifier of the elevate word
         * @return OptionalEntity containing the elevate word if found, or empty if not found
         */
        public OptionalEntity<ElevateWord> getElevateWord(final String id) {
            return elevateWordBhv.selectByPK(id).map(entity -> {
    
                final List<ElevateWordToLabel> wctltmList = elevateWordToLabelBhv.selectList(wctltmCb -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 18.3K bytes
    - Click Count (0)
Back to Top