Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getJarFile (0.04 seconds)

  1. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            ThemeHelper mockThemeHelper = new ThemeHelper() {
                @Override
                protected Path getJarFile(Artifact artifact) {
                    return jarPath;
                }
            };
    
            Artifact artifact = new Artifact("fess-theme-test", "1.0.0");
            Path result = mockThemeHelper.getJarFile(artifact);
            assertEquals(jarPath, result);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

         *
         * @param artifact the theme artifact to install
         * @throws ThemeException if installation fails
         */
        public void install(final Artifact artifact) {
            final Path jarPath = getJarFile(artifact);
            final String themeName = getThemeName(artifact);
            if (logger.isDebugEnabled()) {
                logger.debug("Theme: name={}", themeName);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

                    } else if ("jar".equals(resource.getProtocol())) {
                        final JarURLConnection jarURLConnection = (JarURLConnection) resource.openConnection();
                        try (JarFile jarFile = jarURLConnection.getJarFile()) {
                            final Enumeration<JarEntry> entries = jarFile.entries();
                            while (entries.hasMoreElements()) {
                                final JarEntry entry = entries.nextElement();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 13:59:25 GMT 2026
    - 12.4K bytes
    - Click Count (1)
Back to Top