Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setContentLoc (0.28 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

         */
        public String getContentLoc() {
            return contentLoc;
        }
    
        /**
         * Sets the content location URL.
         * @param contentLoc the content URL to set
         */
        public void setContentLoc(final String contentLoc) {
            this.contentLoc = contentLoc;
        }
    
        /**
         * Gets the player location URL.
         * @return the player URL
         */
        public String getPlayerLoc() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (VIDEO_CONTENT_LOC_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
                        currentVideo.setContentLoc(buf.toString().trim());
                        buf = null;
                    }
                } else if (VIDEO_PLAYER_LOC_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top