Custom Namespaces custom-namespaces
Learn how to define and deploy custom namespaces to AEM 6.5 LTS.
Custom namespaces are the optional part of a JCR property preceding a :. AEM uses several namespaces such as:
jcrfor JCR system propertiescqfor AEM (formerly known as Adobe CQ) propertiesdamfor AEM properties specific to DAM assetsdcfor Dublin Core properties
… and many others.
Namespaces can be used to denote the scope and intent of a property. Creating a custom namespace, often your company name, helps clearly identify nodes or properties specific to your AEM implementation and contain data specific to your business.
Custom namespaces are managed in Sling Repository Initialization (repoinit) scripts, and deployed as OSGi configurations in your project’s configuration package (for example, ui.config).
Resources resources
Code code
The following code is used to configure a wknd namespace.
RepositoryInitializer OSGi configuration
/ui.config/src/main/content/jcr_root/apps/wknd-examples/osgiconfig/config/org.apache.sling.jcr.repoinit.RepositoryInitializer~wknd-examples-namespaces.cfg.json
{
"scripts": [
"register namespace (wknd) https://site.wknd/1.0"
]
}
This allows custom properties using the wknd namespace, as denoted by the first parameter after the register namespace instruction, to be used in AEM. For more advanced script definitions, review the examples in the Sling Repository Initialization (repoinit) documentation.