Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for getDoc (3.31 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.getDoc;
    import static org.codelibs.fess.app.web.admin.searchlist.AdminSearchlistAction.validateFields;
    
    import java.util.Map;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew(final CreateForm form) {
            saveToken();
            form.initialize();
            form.crudMode = CrudMode.CREATE;
            getDoc(form).ifPresent(entity -> {
                form.doc = fessConfig.convertToEditableDoc(entity);
            });
            return asEditHtml();
        }
    
        /**
         * Displays the form for editing an existing document.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 22.7K bytes
    - Viewed (1)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc()
         */
        @Override
        public String getLoc() {
            return loc;
        }
    
        /**
         * Sets the location of the sitemap.
         * @param loc the location URL to set
         */
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        /*
         * (non-Javadoc)
         *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.4K bytes
    - Viewed (1)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals(4, sitemaps.length);
            assertEquals("http://www.example.com/page1.html", sitemaps[0].getLoc());
            assertEquals("http://www.example.com/page2.html", sitemaps[1].getLoc());
            assertEquals("http://www.example.com/page3.html", sitemaps[2].getLoc());
            assertEquals("https://www.example.com/page4.html", sitemaps[3].getLoc());
        }
    
        public void test_parseXmlSitemapsIndex_missingLoc() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                if (URL_ELEMENT.equals(elementName)) {
                    if (sitemapUrl != null) {
                        // Only add sitemap URL if loc is not empty
                        final String loc = sitemapUrl.getLoc();
                        if (loc != null && !loc.trim().isEmpty()) {
                            sitemapSet.addSitemap(sitemapUrl);
                        } else {
                            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

        }
    
        /**
         * Gets the location URL of the image.
         * @return the image URL
         */
        public String getLoc() {
            return loc;
        }
    
        /**
         * Sets the location URL of the image.
         * @param loc the image URL to set
         */
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        /**
         * Gets the caption of the image.
         * @return the caption
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * @return the location URL
         */
        @Override
        public String getLoc() {
            return loc;
        }
    
        /**
         * Sets the location URL of this sitemap entry.
         * @param loc the location URL to set
         */
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java

            responseData.setResponseBody(content);
    
            SitemapUrl sitemap1 = new SitemapUrl();
            sitemap1.setLoc("https://example.com/page1");
    
            SitemapUrl sitemap2 = new SitemapUrl();
            sitemap2.setLoc("https://example.com/page2");
    
            SitemapUrl sitemap3 = new SitemapUrl();
            sitemap3.setLoc("https://example.com/page3");
    
            SitemapSet sitemapSet = new SitemapSet();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. src/test/java/jcifs/pac/kerberos/KerberosPacAuthDataTest.java

                KerberosPacAuthData authData = new KerberosPacAuthData(pacData, keys);
                assertNotNull(authData.getPac());
                assertNotNull(authData.getPac().getLogonInfo());
                assertNotNull(authData.getPac().getServerSignature());
                assertNotNull(authData.getPac().getKdcSignature());
            }
        }
    
        // Test exception for empty PAC
        @Test
        void testConstructorEmptyPac() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java

     */
    public interface Sitemap extends Serializable {
    
        /**
         * Retrieves the location (URL) of the sitemap.
         *
         * @return the location of the sitemap as a String.
         */
        String getLoc();
    
        /**
         * Retrieves the last modification date of the sitemap.
         *
         * @return A string representing the last modification date.
         */
        String getLastmod();
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top