com.day.cq.wcm.api.variants.PageVariant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*************************************************************************
*
* ADOBE CONFIDENTIAL
* ___________________
*
* Copyright 2011 Adobe Systems Incorporated
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe Systems Incorporated and its suppliers,
* if any. The intellectual and technical concepts contained
* herein are proprietary to Adobe Systems Incorporated and its
* suppliers and are protected by trade secret or copyright law.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe Systems Incorporated.
**************************************************************************/
package com.day.cq.wcm.api.variants;
import java.util.Map;
/** A PageVariant represents content that's similar to a given
* page, in another site variant. For example, the english version
* of a french page that a website visitor is looking at.
*/
public interface PageVariant {
/** Get the content path of the variant
* @return The content path of the variant.
*/
String getPath();
/** Get the full URL of the variant.
* @return The full URL of the variant.
*/
String getURL();
/** Get the title of the variant.
* @return The title of the variant.
*/
String getTitle();
/** Additional attributes of the variant (hreflang, media, etc)
* @return Additional attributes of the variant.
*/
Map getAttributes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy