Search Manual / Version 2506.0
Table Of ContentsEach content bean in the CAE represents a content object from the CoreMedia Content Server.
In order to specify the indexed content beans, you have to define the set of source contents using a content selector.
The Spring bean contentSelector of interface
ContentSelector is responsible for selecting source contents for feeding.
The default implementation
PathAndTypeContentSelector
selects contents by type and path and can be configured with the following properties:
caefeeder.content.path- Specifies the content repository folder paths below which content gets indexed. Folder paths must start with a slash and must not overlap. The value of this property is a Map that maps folder paths to 'true' for included paths. Note, that paths mapped to 'false' are not excluded, but simply ignored.
-
caefeeder.content.type - Specifies the content types for which content gets indexed. The value of this property is a Map that maps content types to 'true' for included types. Note, that types mapped to 'false' are not excluded, but simply ignored.
caefeeder.content.include-subtypes- Specifies whether subtypes of the configured content types are selected as well. The default is true.
See Section 3.12, “CAE Feeder Properties” in Deployment Manual for a detailed description of configuration properties.
Note
Changing the caefeeder.content.* properties will not trigger any re-indexing of already
indexed content. See Section 5.3.2, “Resetting” for details on re-indexing.
Example
Example 5.2, “ContentSelector example” selects all contents of type CMMedia,
CMArticle, CMDownload and CMCollection (including sub types) which are
located below the paths /Sites or /Settings/Taxonomies:
caefeeder.content.path[/Sites]=true caefeeder.content.path[/Settings/Taxonomies]=true caefeeder.content.type.CMArticle=true caefeeder.content.type.CMCollection=true caefeeder.content.type.CMDownload=true caefeeder.content.type.CMMedia=true caefeeder.content.include-subtypes=true
Example 5.2. ContentSelector example


