Package com.adobe.cq.dam.cfm
Interface VariationTemplate
-
public interface VariationTemplate
Implementations of this interface allow accessing a variation template in a standardized way, without requiring knowledge about the underlying content structure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Gets the (human-readable) description of the variation templateString
getName()
Gets the (technical) name of the variation template.String
getTitle()
Gets the (human-readable) title of the variation template.void
setDescription(String description)
Sets the description of the variation template.void
setTitle(String title)
Sets the title of the variation template.
-
-
-
Method Detail
-
getName
String getName()
Gets the (technical) name of the variation template.- Returns:
- The name
-
getTitle
String getTitle()
Gets the (human-readable) title of the variation template.- Returns:
- The title
-
getDescription
String getDescription()
Gets the (human-readable) description of the variation template- Returns:
- The (human-readable) description of the variation
-
setTitle
void setTitle(String title)
Sets the title of the variation template.- Parameters:
title
- The new title
-
setDescription
void setDescription(String description)
Sets the description of the variation template.- Parameters:
description
- The new title
-
-