Expand my Community achievements bar.

SOLVED

Description of crxde lite in AEM

Avatar

Level 3

Hi,

I want to know the description of files and folders in crxde lite i.e. working of every folder in crxde lite .Kindly suggest some links or help me for this details because I follow most of the links of AEM but mostly links donot describe all the folders and files.

Thanks in advance

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Each file and folder are different node types used in AEM. You might want to explore based on the type you are interested in.

 

In Adobe Experience Manager (AEM), content is stored in a hierarchical structure as nodes in a content repository. Each node type in AEM represents a specific type of content, and understanding these node types is crucial for developing and managing AEM applications. Here are some common AEM node types and their purposes:

  1. cq:Page:

    • Represents a web page in the AEM hierarchy.
    • Contains properties such as title, template, and sling:resourceType.
    • Child nodes may include jcr:content, which holds the actual content of the page.
  2. cq:PageContent:

    • Represents the content node under a cq:Page.
    • Contains the actual content of the page, including components and their configurations.
    • Child nodes may include elements like par (Paragraph System), text, and image nodes.
  3. cq:Template:

    • Defines the structure and initial content of pages.
    • Contains nodes representing components and other structural elements.
    • Used to create pages with predefined structures and components.
  4. cq:Component:

    • Represents a reusable component that can be added to pages.
    • Contains properties like sling:resourceType and cq:dialogPath.
    • Child nodes may include design_dialog, rendering, and others, depending on the component's configuration.
  5. cq:Dialog:

    • Defines the configuration dialog for a component.
    • Contains nodes representing the fields, tabs, and other elements in the component's configuration dialog.
  6. nt:unstructured:

    • A generic node type with no predefined structure.
    • Often used for storing content that doesn't fit into a predefined node type.
    • Allows for flexibility in content modeling.
  7. sling:Folder:

    • Represents a folder in the AEM repository.
    • Often used to organize and group related content nodes.
    • May include child nodes specific to the type of content being organized.
  8. cq:Tag:

    • Represents a tag used for categorizing content.
    • Contains properties like title and description.
    • Tag nodes are organized in a hierarchy to create a taxonomy.

Aanchal Sikka

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Each file and folder are different node types used in AEM. You might want to explore based on the type you are interested in.

 

In Adobe Experience Manager (AEM), content is stored in a hierarchical structure as nodes in a content repository. Each node type in AEM represents a specific type of content, and understanding these node types is crucial for developing and managing AEM applications. Here are some common AEM node types and their purposes:

  1. cq:Page:

    • Represents a web page in the AEM hierarchy.
    • Contains properties such as title, template, and sling:resourceType.
    • Child nodes may include jcr:content, which holds the actual content of the page.
  2. cq:PageContent:

    • Represents the content node under a cq:Page.
    • Contains the actual content of the page, including components and their configurations.
    • Child nodes may include elements like par (Paragraph System), text, and image nodes.
  3. cq:Template:

    • Defines the structure and initial content of pages.
    • Contains nodes representing components and other structural elements.
    • Used to create pages with predefined structures and components.
  4. cq:Component:

    • Represents a reusable component that can be added to pages.
    • Contains properties like sling:resourceType and cq:dialogPath.
    • Child nodes may include design_dialog, rendering, and others, depending on the component's configuration.
  5. cq:Dialog:

    • Defines the configuration dialog for a component.
    • Contains nodes representing the fields, tabs, and other elements in the component's configuration dialog.
  6. nt:unstructured:

    • A generic node type with no predefined structure.
    • Often used for storing content that doesn't fit into a predefined node type.
    • Allows for flexibility in content modeling.
  7. sling:Folder:

    • Represents a folder in the AEM repository.
    • Often used to organize and group related content nodes.
    • May include child nodes specific to the type of content being organized.
  8. cq:Tag:

    • Represents a tag used for categorizing content.
    • Contains properties like title and description.
    • Tag nodes are organized in a hierarchy to create a taxonomy.

Aanchal Sikka