- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 190 for wordt (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java
import org.codelibs.fess.app.web.admin.dict.protwords.DownloadForm; /** * Download body for protected words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading protected words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */
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/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/DownloadBody.java
package org.codelibs.fess.app.web.api.admin.dict.stopwords; import org.codelibs.fess.app.web.admin.dict.stopwords.DownloadForm; /** * Download body for stop words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading stop words dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */
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/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/EditBody.java
import org.codelibs.fess.app.web.admin.dict.stopwords.EditForm; /** * Request body class for stop words dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for stop words dictionary management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
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/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java
import org.lastaflute.web.validation.Required; /** * The download form for protected words dictionary. * This form is used for downloading protected words dictionary files from the admin interface. * */ public class DownloadForm { /** * Dictionary ID for identifying the protected words dictionary to download. */ @Required public String dictId; /**
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/main/java/org/codelibs/fess/app/pager/BadWordPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for bad word management with pagination support. * Provides pagination functionality for bad word lists. */ public class BadWordPager implements Serializable { private static final long serialVersionUID = 1L; /** Default page size for bad word pagination. */ public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for bad word administration. * Extends BaseSearchBody with bad word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The bad word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() {
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/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.dict.protwords; import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody; /** * Search request body for protected words dictionary administration. * Extends BaseSearchDictBody with protected words dictionary-specific search parameters. */ public class SearchBody extends BaseSearchDictBody { /** * Default constructor for SearchBody. */
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/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.dict.stopwords; import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody; /** * Search request body for stop words dictionary administration. * Extends BaseSearchDictBody with stop words dictionary-specific search parameters. */ public class SearchBody extends BaseSearchDictBody { /** * Default constructor for SearchBody. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading stopwords files to the Fess search engine. * Stopwords are common words that should be ignored during search indexing and querying. * This form is used in the admin interface to upload custom stopwords dictionary files. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; /** * Creator for protected words dictionary files. * This class manages the creation and registration of protected words dictionary files. */ public class ProtwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0)