Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getComponentName (0.09 sec)

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

        }
    
        public ContainerNotAvailableException(final Throwable cause) {
            super("Container is not avaiable.");
            componentName = "container";
        }
    
        public String getComponentName() {
            return componentName;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

                onDestroyListener.onDestroy(p);
            }
        }
    
        public interface OnDestroyListener<T> {
            void onDestroy(PooledObject<T> p);
        }
    
        public String getComponentName() {
            return componentName;
        }
    
        public void setComponentName(final String componentName) {
            this.componentName = componentName;
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top