Interface List
-
- All Superinterfaces:
Component,ComponentExporter
@ConsumerType public interface List extends Component
Defines theListSling Model used for the/apps/core/wcm/components/listcomponent. This component currently only supports page lists.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static StringPN_DATE_FORMATName of the resource property indicating which date format should be used when the list items render their modification date.static StringPN_DISPLAY_ITEM_AS_TEASERName of the boolean resource property indication if the items should render a link to the page they represent.static StringPN_LINK_ITEMSName of the boolean resource property indication if the items should render a link to the page they represent.static StringPN_ORDER_BYName of the resource property indicating by which criterion the sort is performed.static StringPN_PAGESName of the resource property storing the list of pages to be rendered if the source of the list isstatic.static StringPN_PARENT_PAGEName of the resource property storing the root page from which to build the list if the source of the list ischildren.static StringPN_SEARCH_INName of the resource property storing where a search should be performed if the source of the list issearch.static StringPN_SHOW_DESCRIPTIONName of the boolean resource property indicating if the list items should render a description.static StringPN_SHOW_MODIFICATION_DATEName of the boolean resource property indicating if the list items should render the modification date of each item.static StringPN_SORT_ORDERName of the resource property indicating how the list items should be sorted.static StringPN_SOURCEName of the resource property indicating how the list will be built.static StringPN_TAGSName of the resource property storing the tags that will be used for building the list if the source of the list istags.static StringPN_TAGS_MATCHName of the resource property indicating if the matching against tags can accept any tag from the tag list.static StringPN_TAGS_PARENT_PAGEName of the resource property storing the root from where the tag search is performed.static StringPN_TEASER_DELEGATEName of the component property indicating to which teaser component the list items should be delegated.
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default booleandisplayItemAsTeaser()Returnstrueif the list's items should be displayed as teasers.default StringgetDateFormatString()Returns the date format used to display the last modification date of the list's items.default Collection<Page>getItems()Deprecated.since 12.1.0: usegetListItems()insteaddefault @NotNull Collection<ListItem>getListItems()Returns the list's items collection, asListItems elements.default booleanlinkItems()Returnstrueif the list's items should link to the correspondingPages they represent.default booleanshowDescription()Returnstrueif the list's items should render their description.default booleanshowModificationDate()Returnstrueif the list's items should render their last modification date.-
Methods inherited from interface com.adobe.cq.wcm.core.components.models.Component
getAppliedCssClasses, getData, getExportedType, getId
-
-
-
-
Field Detail
-
PN_SOURCE
static final String PN_SOURCE
Name of the resource property indicating how the list will be built. Possible values are:children- the list will be built from the child pages of the page identified byPN_PARENT_PAGEstatic- the list will be built from a custom set of pages, stored by thePN_PAGESpropertysearch- the list will be built from the result of a search querytags- the list will be built from the sub-pages of the page identified byPN_TAGS_PARENT_PAGEwhich are tagged with the tags stored by thePN_TAGSproperty
- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_PAGES
static final String PN_PAGES
Name of the resource property storing the list of pages to be rendered if the source of the list isstatic.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_PARENT_PAGE
static final String PN_PARENT_PAGE
Name of the resource property storing the root page from which to build the list if the source of the list ischildren.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_TAGS_PARENT_PAGE
static final String PN_TAGS_PARENT_PAGE
Name of the resource property storing the root from where the tag search is performed.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_TAGS
static final String PN_TAGS
Name of the resource property storing the tags that will be used for building the list if the source of the list istags.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_TAGS_MATCH
static final String PN_TAGS_MATCH
Name of the resource property indicating if the matching against tags can accept any tag from the tag list. The accepted value isany.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_SHOW_DESCRIPTION
static final String PN_SHOW_DESCRIPTION
Name of the boolean resource property indicating if the list items should render a description.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_SHOW_MODIFICATION_DATE
static final String PN_SHOW_MODIFICATION_DATE
Name of the boolean resource property indicating if the list items should render the modification date of each item.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_LINK_ITEMS
static final String PN_LINK_ITEMS
Name of the boolean resource property indication if the items should render a link to the page they represent.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_DISPLAY_ITEM_AS_TEASER
static final String PN_DISPLAY_ITEM_AS_TEASER
Name of the boolean resource property indication if the items should render a link to the page they represent.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_SEARCH_IN
static final String PN_SEARCH_IN
Name of the resource property storing where a search should be performed if the source of the list issearch.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
PN_SOURCE, Constant Field Values
-
PN_SORT_ORDER
static final String PN_SORT_ORDER
Name of the resource property indicating how the list items should be sorted. Possible values:asc,desc.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_ORDER_BY
static final String PN_ORDER_BY
Name of the resource property indicating by which criterion the sort is performed. Possible value:title,modified.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_DATE_FORMAT
static final String PN_DATE_FORMAT
Name of the resource property indicating which date format should be used when the list items render their modification date.- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0
- See Also:
- Constant Field Values
-
PN_TEASER_DELEGATE
static final String PN_TEASER_DELEGATE
Name of the component property indicating to which teaser component the list items should be delegated.- Since:
- com.adobe.cq.wcm.core.components.models 12.21.0
- See Also:
- Constant Field Values
-
-
Method Detail
-
getItems
@Deprecated default Collection<Page> getItems()
Deprecated.since 12.1.0: usegetListItems()insteadReturns the list's items collection, asPageelements.- Returns:
CollectionofPages- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0; marked
defaultin 12.1.0
-
getListItems
@NotNull default @NotNull Collection<ListItem> getListItems()
Returns the list's items collection, asListItems elements.- Returns:
CollectionofListItems- Since:
- com.adobe.cq.wcm.core.components.models 12.2.0
-
displayItemAsTeaser
default boolean displayItemAsTeaser()
Returnstrueif the list's items should be displayed as teasers.- Returns:
trueif the items should be displayed as teasers,falseotherwise- Since:
- com.adobe.cq.wcm.core.components.models 12.21.0
-
linkItems
default boolean linkItems()
Returnstrueif the list's items should link to the correspondingPages they represent.- Returns:
trueif the pages should be linked,falseotherwise- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0; marked
defaultin 12.1.0
-
showDescription
default boolean showDescription()
Returnstrueif the list's items should render their description.- Returns:
trueif page description should be shown,falseotherwise- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0; marked
defaultin 12.1.0
-
showModificationDate
default boolean showModificationDate()
Returnstrueif the list's items should render their last modification date.- Returns:
trueif modification date should be shown,falseotherwise- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0; marked
defaultin 12.1.0
-
getDateFormatString
default String getDateFormatString()
Returns the date format used to display the last modification date of the list's items.- Returns:
- format to use for the display of the last modification date.
- Since:
- com.adobe.cq.wcm.core.components.models 11.0.0; marked
defaultin 12.1.0 - See Also:
showModificationDate()
-
-