Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for getType (0.17 sec)

  1. src/main/java/org/codelibs/fess/exception/InvalidAccessTokenException.java

        private final String type;
    
        public InvalidAccessTokenException(final String type, final String message) {
            super(message);
            this.type = type;
        }
    
        public String getType() {
            return type;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1016 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

        protected ListBody createListBody(final DictionaryFile<? extends DictionaryItem> dictionaryFile) {
            final ListBody body = new ListBody();
            body.id = dictionaryFile.getId();
            body.type = dictionaryFile.getType();
            body.path = dictionaryFile.getPath();
            body.timestamp = dictionaryFile.getTimestamp();
            return body;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public abstract String[] getExtraQueries();
    
        public abstract Object getAttribute(String name);
    
        public abstract Locale getLocale();
    
        public abstract SearchRequestType getType();
    
        public abstract String getSimilarDocHash();
    
        public String getTrackTotalHits() {
            return null;
        }
    
        public Float getMinScore() {
            return null;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                return name + "-" + version + ".jar";
            }
    
            public String getUrl() {
                return url;
            }
    
            public ArtifactType getType() {
                return ArtifactType.getType(name);
            }
    
            @Override
            public String toString() {
                return name + ":" + version;
            }
        }
    
        public enum ArtifactType {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            fessConfig = ComponentUtil.getFessConfig();
        }
    
        public String getAccountId(final SID sid) {
            final int type = sid.getType();
            if (logger.isDebugEnabled()) {
                try {
                    logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString());
                } catch (final Exception e) {
                    // ignore
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

            }
            return result;
        }
    
        public static Map<String, String> beanToMap(final Artifact artifact) {
            final Map<String, String> item = new HashMap<>();
            item.put("type", artifact.getType().getId());
            item.put("id", artifact.getName() + ":" + artifact.getVersion());
            item.put("name", artifact.getName());
            item.put("version", artifact.getVersion());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

        }
    
        @Override
        public Locale getLocale() {
            return ComponentUtil.getRequestManager().getUserLocale();
        }
    
        @Override
        public SearchRequestType getType() {
            return SearchRequestType.ADMIN_SEARCH;
        }
    
        @Override
        public String getSimilarDocHash() {
            return sdh;
        }
    
        @Override
        public String getTrackTotalHits() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

        List<ProtwordsItem> protwordsItemList;
    
        public ProtwordsFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return PROTWORDS;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public synchronized OptionalEntity<ProtwordsItem> get(final long id) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

        public StemmerOverrideFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STEMMER_OVERRIDE;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

            this.numOfFragments = fessConfig.getQueryHighlightNumberOfFragmentsAsInteger();
            this.fragmentOffset = fessConfig.getQueryHighlightFragmentOffsetAsInteger();
        }
    
        public String getType() {
            return type;
        }
    
        public HighlightInfo type(final String type) {
            this.type = type;
            return this;
        }
    
        public int getFragmentSize() {
            return fragmentSize;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.1K bytes
    - Viewed (0)
Back to top