Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for schemat (0.06 sec)

  1. FessLabels.java

    the message: Num */ L234: public static final String LABELS_NUM = "{labels.num}"; L235: L236: /** The key of the message: Page Number */ L237: public static final String LABELS_PN = "{labels.pn}"; L238: L239: /** The key of the message: Scheme */ L240: public static final String LABELS_PROTOCOL_SCHEME = "{labels.protocolScheme}"; L241: L242: /** The key of the message: Purge By Bots */ L243: public static final String LABELS_PURGE_BY_BOTS = "{labels.purgeByBots}"; L244: L245: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Mar 22 11:58:34 UTC 2024
      146.4K bytes
  2. DataConfig.java

    String webAuthName : webAuthNames) { L170: final String scheme = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".scheme"); L171: L172: final AuthScheme authScheme = getAuthScheme(paramMap, webAuthName, scheme); L173: final AuthScope authScope = getAuthScope(webAuthName, scheme, paramMap); L174: final Credentials credentials = getCredentials(webAuthName, scheme, paramMap); L175: basicAuthList.add(new AuthenticationImpl(authScope,...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      18.5K bytes
  3. WebAuthentication.java

    getCredentials(), getAuthScheme()); L58: } L59: L60: private AuthScheme getAuthScheme() { L61: final String scheme = getProtocolScheme(); L62: if (Constants.BASIC.equals(scheme)) { L63: return new BasicScheme(); L64: } L65: if (Constants.DIGEST.equals(scheme)) { L66: return new DigestScheme(); L67: } L68: if (Constants.NTLM.equals(scheme)) { L69: final Properties props = new Properties(); L70: getWebConfig().getConfigPa...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      5.8K bytes
Back to top