- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getStatusCode (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
given().contentType("application/json").params(params).when().post("/api/v1/documents/" + docId + "/favorite"); // Should return 200 or 201 int statusCode = response.getStatusCode(); assertTrue(statusCode == 200 || statusCode == 201, "Status code should be 200 or 201, but was " + statusCode); } } @Test public void testSetFavorite_noQueryId() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
throw new WebApiException(HttpServletResponse.SC_FORBIDDEN, "Invalid session."); }); } catch (final WebApiException e) { final int statusCode = e.getStatusCode(); String message; if (Constants.TRUE.equalsIgnoreCase(ComponentUtil.getFessConfig().getApiJsonResponseExceptionIncluded())) { if (statusCode >= 400 && statusCode < 500) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:40 GMT 2026 - 13.4K bytes - Click Count (0)