- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for badword (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/BadWord.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exentity; import org.codelibs.fess.opensearch.config.bsentity.BsBadWord; /** * @author ESFlute (using FreeGen) */ public class BadWord extends BsBadWord { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
*/ // GET /api/admin/badword/settings // PUT /api/admin/badword/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final BadWordPager pager = copyBeanToNewBean(body, BadWordPager.class); final List<BadWord> list = badWordService.getBadWordList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/BadWordDbm.java
{ setupEpg(_epgMap, et -> ((BadWord) et).getCreatedBy(), (et, vl) -> ((BadWord) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy"); setupEpg(_epgMap, et -> ((BadWord) et).getCreatedTime(), (et, vl) -> ((BadWord) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime"); setupEpg(_epgMap, et -> ((BadWord) et).getSuggestWord(), (et, vl) -> ((BadWord) et).setSuggestWord(DfTypeUtil.toString(vl)),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
public void addBadWord(final String badWord, final boolean apply) { suggester.indexer().addBadWord(badWord, apply); refresh(); } /** * Deletes a bad word from the suggest index. * * @param badWord The bad word to delete. */ public void deleteBadWord(final String badWord) { suggester.indexer().deleteBadWord(badWord); refresh(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
badWord.setCreatedBy(Constants.SYSTEM_USER); badWord.setCreatedTime(now); badWordBhv.insert(badWord); } else { badWord.setUpdatedBy(Constants.SYSTEM_USER); badWord.setUpdatedTime(now); badWordBhv.update(badWord); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsBadWordBhv.java
@Override protected Class<? extends BadWord> typeOfSelectedEntity() { return BadWord.class; } @Override protected Class<BadWord> typeOfHandlingEntity() { return BadWord.class; } @Override protected Class<BadWordCB> typeOfHandlingConditionBean() { return BadWordCB.class; } public ListResultBean<BadWord> selectList(CBCall<BadWordCB> cbLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
} } private static class MockBadWordBhv extends BadWordBhv { public List<BadWord> selectList(Consumer<Object> cbLambda) { List<BadWord> badWordList = new ArrayList<>(); BadWord badWord = new BadWord(); badWord.setSuggestWord("badword"); badWordList.add(badWord); return badWordList; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/badword/admin_badword.jsp */ HtmlNext path_AdminBadword_AdminBadwordJsp = new HtmlNext("/admin/badword/admin_badword.jsp"); /** The path of the HTML: /admin/badword/admin_badword_details.jsp */ HtmlNext path_AdminBadword_AdminBadwordDetailsJsp = new HtmlNext("/admin/badword/admin_badword_details.jsp"); /** The path of the HTML: /admin/badword/admin_badword_download.jsp */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/CreateBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.admin.badword.CreateForm; /** * Request body for creating bad word via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1001 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for bad word administration. * Extends BaseSearchBody with bad word-specific search parameters. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)