Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRepositoryContent (0.26 sec)

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

                @Override
                protected String[] getRepositories() {
                    return new String[] { "plugin/repo1/", "plugin/repo2/" };
                }
    
                @Override
                protected String getRepositoryContent(String url) {
                    if (url.endsWith("/")) {
                        url = url + "index.html";
                    }
                    if (url.contains("plugin/repo1")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * @throws PluginException if failed to parse the repository content
         */
        protected List<Artifact> loadArtifactsFromRepository(final String url) {
            final String content = getRepositoryContent(url);
            final ObjectMapper objectMapper = new YAMLMapper();
            try {
                @SuppressWarnings("unchecked")
                final List<Map<?, ?>> result = objectMapper.readValue(content, List.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top