Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isBlank (0.05 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (list == null) {
                final String value = getSystemProperty(Constants.DEFAULT_SORT_VALUE_PROPERTY);
                if (StringUtil.isBlank(value)) {
                    list = Collections.emptyList();
                } else {
                    final Set<String> keySet = new HashSet<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            final String userCode = userInfoHelper.getUserCode();
    
                            if (StringUtil.isBlank(userCode)) {
                                throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "No user session.");
                            }
                            if (StringUtil.isBlank(favoriteUrl)) {
                                throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "URL is null.");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            if (StringUtil.isNotBlank(fessConfig.getIndexDictionaryPrefix())) {
                String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY);
                if (StringUtil.isBlank(dictionaryPath)) {
                    System.setProperty("fess.dictionary.path", fessConfig.getIndexDictionaryPrefix() + "/");
                } else {
                    if (!dictionaryPath.endsWith("/")) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                }
            }
            return isBind;
        }
    
        public OptionalEntity<FessUser> login(final String username, final String password) {
            if (StringUtil.isBlank(fessConfig.getLdapProviderUrl()) || !validate()) {
                return OptionalEntity.empty();
            }
    
            final Hashtable<String, String> env = createSearchEnv(username, password);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top