[
https://issues.apache.org/jira/browse/OAK-2244?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Julian Reschke updated OAK-2244:
--------------------------------
Summary: Content can be changed by users who do not own the lock (was:
Content can be change by users that do not own the lock)
> Content can be changed by users who do not own the lock
> -------------------------------------------------------
>
> Key: OAK-2244
> URL: https://issues.apache.org/jira/browse/OAK-2244
> Project: Jackrabbit Oak
> Issue Type: Sub-task
> Components: core, jcr
> Affects Versions: 1.0.6
> Reporter: Marius Petria
>
> I can create a lock on an item with "admin" but this does not prevent a
> different user from changing the content.
> {code}
> <jcr:content
> cq:lastModified="{Date}2010-07-28T15:21:21.213+01:00"
> cq:lastModifiedBy="author"
> cq:template="/apps/geometrixx/templates/contentpage"
> jcr:lockIsDeep="{Boolean}true"
> jcr:lockOwner="admin"
> jcr:mixinTypes="[mix:lockable]"
> jcr:primaryType="cq:PageContent"
> jcr:title="Dienstleistungen"
> sling:resourceType="geometrixx/components/contentpage"/>
> {code}
> {code}
> String path = "/content/geometrixx/de/company/jcr:content";
> Session authorSession = repository.login(new SimpleCredentials("author",
> "author".toCharArray()));
> Lock l= authorSession.getWorkspace().getLockManager().getLock(path);
> if (l.getLockOwner().equals("admin") &&
> authorSession.getWorkspace().getLockManager().isLocked(path)) {
> Node node = authorSession.getNode(path);
> node.setProperty("bla", "bla");
> authorSession.save();
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)