All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.adobe.udp.markdownimporter.utils.Constants Maven / Gradle / Ivy

Go to download

Take a directory of Markdown files and turn them into a content package for Adobe Experience Manager that contains one page for every Markdown file, with proper components for every paragraph in the Markdown

The newest version!
/**
 * Copyright 2017 Adobe Systems Incorporated. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.adobe.udp.markdownimporter.utils;

public class Constants {

    public static final String CQ_PAGE = "cq:Page";
    public static final String CQ_PAGE_CONTENT = "cq:PageContent";
    public static final String CQ_TEMPLATE = "cq:template";
    public static final String CQ_DESIGN_PATH = "cq:designPath";
    public static final String JCR_CONTENT = "jcr:content";
    public static final String JCR_TITLE = "jcr:title";
    public static final String NT_UNSTRUCTURED = "nt:unstructured";
    public static final String SLING_ORDERED_FOLDER = "sling:OrderedFolder";
    public static final String SLING_RESOURCE_TYPE = "sling:resourceType";
    public static final String HTTP_PREFIX = "http://";
	public static final String HTTPS_PREFIX = "https://";

    private Constants() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy