Skip to content
Snippets Groups Projects

feat(sitemap): allow multi sitemap

Merged Florent Poittevin requested to merge fpo/allow_multi_sitemap into master
4 unresolved threads

Merge request reports

Merged by Hugues.CazeauxHugues.Cazeaux 11 months ago (Jul 1, 2024 1:28pm UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 /*-
2 * %%----------------------------------------------------------------------------------------------
3 * Archive ouverte UNIGE - AoU Access - SitemapController.java
  • 13 * This program is distributed in the hope that it will be useful,
    14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    16 * GNU General Public License for more details.
    17 *
    18 * You should have received a copy of the GNU General Public
    19 * License along with this program. If not, see
    20 * <http://www.gnu.org/licenses/gpl-2.0.html>.
    21 * ----------------------------------------------------------------------------------------------%%
    22 */
    23
    24 package ch.unige.solidify.service.sitemap;
    25
    26 import java.util.List;
    27
    28 public interface ISitemap {
  • 55 57
    56 58 private final int pageSize;
    57 59
    58 private final String sitemapLocation;
  • 55 57
    56 58 private final int pageSize;
    57 59
    58 private final String sitemapLocation;
    60 private String sitemapLocation;
    59 61 private String sitemapDocumentLocation;
  • Please register or sign in to reply
    Loading