- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for isUserFavorite (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
@Override public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override searchLogSupport = fessConfig.isSearchLog(); favoriteSupport = fessConfig.isUserFavorite(); thumbnailSupport = fessConfig.isThumbnailEnabled(); runtime.registerData("searchLogSupport", searchLogSupport); runtime.registerData("favoriteSupport", favoriteSupport);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
form.searchLog = fessConfig.isSearchLog() ? Constants.TRUE : Constants.FALSE; form.userInfo = fessConfig.isUserInfo() ? Constants.TRUE : Constants.FALSE; form.userFavorite = fessConfig.isUserFavorite() ? Constants.TRUE : Constants.FALSE; form.webApiJson = fessConfig.isWebApiJson() ? Constants.TRUE : Constants.FALSE; form.appValue = fessConfig.getAppValue();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (!acceptHttpMethod(request, POST)) { return; } if (!ComponentUtil.getFessConfig().isUserFavorite()) { writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Unsupported operation.")); return; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
params.getStartPosition(), params.getPageSize(), queryResponseList); } // favorite if (fessConfig.isUserFavorite()) { ComponentUtil.getUserInfoHelper().storeQueryId(queryId, documentItems); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} default void setUserFavorite(final boolean value) { setSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, value); } default boolean isUserFavorite() { return getSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, false); } default void setWebApiJson(final boolean value) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0)