This content has been marked as final.
Show 2 replies
-
1. Re: Versioning - support to change major version number
hchiorean Mar 21, 2016 7:28 AM (in response to sipos-roland-13b18346)The name of the version nodes is an internal implementation detail, not something which is meant to be exposed and used by clients directly (actually the entire structure of nodes created under a version history should be consider internal, with the exception of the parts which JCR #3.13 exposes explicitly). The public versioning API includes classes like javax.jcr.version.VersionManager, javax.jcr.version.VersionHistory etc
If you want some sort of semantical meaning for the different versions you can use version labels (see JCR 2.1 #3.13.5.5) or create some other custom logic specific to your application.
-
2. Re: Versioning - support to change major version number
sipos-roland-13b18346 Mar 31, 2016 4:21 AM (in response to hchiorean)Thanks for the advice.