- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for GetResponse (0.04 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/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/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/sso/oic/OpenIdConnectAuthenticator.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Dec 14 01:18:25 GMT 2025 - 16.5K bytes - Click Count (0) -
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/main/java/org/codelibs/fess/taglib/FessFunctions.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
@Test public void test_logout_returnsNull() { assertNull(authenticator.logout(null)); } @Test public void test_getResponse_returnsNull() { assertNull(authenticator.getResponse(null)); } @Test public void test_getLoginCredential_withRequest() { // With a request context, should return ActionResponseCredential for OAuth redirectCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/form-validator/security.js
c.trigger("complexityRequirementValidation",[!1,a]))}}),!l||(this.errorMessage=l+e.passwordComplexityEnd,!1)},errorMessage:"",errorMessageKey:""}),a.formUtils.addValidator({name:"recaptcha",validatorFunction:function(a,b){return""!==grecaptcha.getResponse(b.valAttr("recaptcha-widget-id"))},errorMessage:"",errorMessageKey:"badreCaptcha"}),a.fn.displayPasswordStrength=function(b){return new a.formUtils.validators.validate_strength.strengthDisplay(this,b),this};var g=function(b,c,d){if(c||(c=a("for...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 01 05:12:47 GMT 2018 - 10.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} if (StringUtil.isNotBlank(cookiePath)) { cookie.setPath(cookiePath); } cookie.setSecure(isSecureCookie()); LaResponseUtil.getResponse().addCookie(cookie); } /** * Determines whether the user identification cookie should be marked as secure. * Checks the configured secure setting or examines request headers to detect HTTPS.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14.9K bytes - Click Count (0)