- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getBadWord (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Get the bad word. * @param form The create form. * @return The bad word. */ public static OptionalEntity<BadWord> getBadWord(final CreateForm form) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.badword; import static org.codelibs.fess.app.web.admin.badword.AdminBadwordAction.getBadWord; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.Writer;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
} /** * Gets a bad word by its ID. * @param id The bad word ID. * @return Optional entity containing the bad word if found. */ public OptionalEntity<BadWord> getBadWord(final String id) { return badWordBhv.selectByPK(id); } /** * Stores (inserts or updates) a bad word. * @param badWord The bad word to store. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.6K bytes - Click Count (0)