- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for GetResponse (0.05 seconds)
-
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
assertNotNull(authenticator.getLastResolver()); } // Test getResponse method with different response types @Test public void test_getResponse_withMetadataType() { // Setup - Test with null response initially ActionResponse result = authenticator.getResponse(SsoResponseType.METADATA); // Verify initial state assertNull(result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.2K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertEquals("testuser", ((TestLoginCredential) credential).username); } // Test getResponse() method @Test public void test_getResponse_whenNotAvailable() { currentSsoType = Constants.NONE; assertNull(ssoManager.getResponse(SsoResponseType.METADATA)); assertNull(ssoManager.getResponse(SsoResponseType.LOGOUT)); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
@Test public void test_completeOperation_ownInstance_deletesDoc() { setupMockFessConfig(); final String getResponse = "{\"found\":true,\"_seq_no\":5,\"_primary_term\":1," + "\"_source\":{\"type\":\"operation\",\"name\":\"reindex\"," + "\"instanceId\":\"node1@host1\",\"status\":\"running\"}}";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with SAML Authenticator"); } final HttpServletResponse response = LaResponseUtil.getResponse(); final HttpSession session = request.getSession(false); if (session != null) { final String sesState = (String) session.getAttribute(SAML_STATE);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with SPNEGO Authenticator"); } final HttpServletResponse response = LaResponseUtil.getResponse(); final SpnegoHttpServletResponse spnegoResponse = new SpnegoHttpServletResponse(response); // client/caller principal final SpnegoPrincipal principal; try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
*/ public void completeOperation(final String operationName) { try (CurlResponse getResponse = ComponentUtil.getCurlHelper() // .get("/" + getIndexName() + "/_doc/" + operationName) // .execute()) { if (getResponse.getHttpStatusCode() != 200) { logger.debug("Operation document not found: operation={}", operationName);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
// SPNEGO typically doesn't provide special response handling org.lastaflute.web.response.ActionResponse response = authenticator.getResponse(org.codelibs.fess.sso.SsoResponseType.METADATA); assertNull(response); response = authenticator.getResponse(org.codelibs.fess.sso.SsoResponseType.LOGOUT); assertNull(response); } @Test public void test_innerClassNaming() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final SearchResult<T, GetRequestBuilder, GetResponse> searchResult) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final long startTime = systemHelper.getCurrentTimeAsLong(); GetResponse response = null; final GetRequestBuilder requestBuilder = client.prepareGet(index, id);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
*/ public void setMaxGroupDepth(final int maxGroupDepth) { this.maxGroupDepth = maxGroupDepth; } @Override public ActionResponse getResponse(final SsoResponseType responseType) { return null; } @Override public String logout(final FessUserBean user) { return null; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0)