Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 21 for GetResponse (0.24 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/api/BaseApiManager.java

            } else {
                enc = encoding;
            }
            buf.append(enc);
            final HttpServletResponse response = LaResponseUtil.getResponse();
            response.setContentType(buf.toString());
            writeHeaders(response);
            try (PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), enc))) {
                out.print(text);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

         */
        @Execute
        public ActionResponse metadata() {
            final SsoManager ssoManager = ComponentUtil.getSsoManager();
            try {
                final ActionResponse actionResponse = ssoManager.getResponse(SsoResponseType.METADATA);
                if (actionResponse == null) {
                    throw responseManager.new400("Unsupported request type.");
                }
                return actionResponse;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    }
                } catch (final ExecutionException e) {
                    logger.debug("Failed to access resource hash cache: path={}", input, e);
                }
            }
            return LaResponseUtil.getResponse().encodeURL(sb.toString());
        }
    
        /**
         * Encodes a string for similar document hash processing.
         *
         * @param input the string to encode
    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)
  7. 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)
  8. 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 redirect
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  9. 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)
  10. 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)
Back to Top