VersionManagerImpl in Webconsole does not show multiple values
Hello everyone
I am currently in the process of setting up the automatic version purging service as described at http://docs.adobe.com/docs/de/aem/6-0/deploy/configuring/version-purging.html. There it is stated that both versionmanager.ivPaths as well as versionmanager.purgePaths (PID com.day.cq.wcm.core.impl.VersionManagerImpl) are multi value settings (String[]) however when I check at http://localhost:4502/system/console/configMgr/com.day.cq.wcm.core.impl.VersionManagerImpl I can only see a single textfield for each value.
Since I am configuring my OSGi configurations in the source code I checked the values in the repository (in my case it is /apps/internet/config.author/com.day.cq.wcm.core.impl.VersionManagerImpl) and there I can see that multiple paths do get stored in each property. Yet in the web console it does only show me the first of those values. Am I missing something here or is it supposed to be like this? Does this mean the version purging service does still work properly and takes all paths into account?
Following is the configuration I am using.
<?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" jcr:primaryType="sling:OsgiConfig" versionmanager.createVersionOnActivation="{Boolean}true" versionmanager.purgingEnabled="{Boolean}true" versionmanager.purgePaths="[/content/internet,/content/dam]" versionmanager.ivPaths="[/content/internet,/content/dam]" versionmanager.maxAgeDays="{Long}0" versionmanager.maxNumberVersions="{Long}5"/>Any help is appreciated.
Cheers