- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for badWord (0.12 sec)
-
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/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/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/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/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) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
assertEquals("/admin/backup/admin_backup.jsp", FessHtmlPath.path_AdminBackup_AdminBackupJsp.getRoutingPath()); assertEquals("/admin/badword/admin_badword.jsp", FessHtmlPath.path_AdminBadword_AdminBadwordJsp.getRoutingPath()); assertEquals("/admin/dashboard/admin_dashboard.jsp", FessHtmlPath.path_AdminDashboard_AdminDashboardJsp.getRoutingPath());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
public ActionResponse download(final DownloadForm form) { verifyToken(this::asDownloadHtml); return asStream("badword.csv").contentTypeOctetStream().stream(out -> { final Path tempFile = ComponentUtil.getSystemHelper().createTempFile("fess-badword-", ".csv").toPath(); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0)