Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for token_name (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc5FormScheme.java

            try {
                final String tokenName = getParameter(TOKEN_NAME);
                final String content = new String(InputStreamUtil.getBytes(entity.getContent()), Constants.UTF_8_CHARSET);
                final String tokenValue = getTokenValue(tokenPattern, content);
                if (StringUtil.isNotBlank(tokenValue)) {
                    responseParams.add(new Pair<>(tokenName, tokenValue));
                    if (logger.isDebugEnabled()) {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Jan 04 13:09:59 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

         */
        protected Hc5FormScheme convertFormScheme(final Hc4FormScheme hc4Form) {
            final Map<String, String> params = new HashMap<>();
            final String[] keys = { "encoding", "token_url", "token_pattern", "token_name", "token_method", "token_parameters", "login_method",
                    "login_url", "login_parameters" };
            for (final String key : keys) {
                final String value = hc4Form.getParameter(key);
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
Back to Top