You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Julian Reschke (JIRA)" <ji...@apache.org> on 2012/07/10 14:14:34 UTC

[jira] [Updated] (JCR-3381) move() on shareable nodes unsupported

     [ https://issues.apache.org/jira/browse/JCR-3381?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Julian Reschke updated JCR-3381:
--------------------------------

    Description: 
In BatchedItemOperation.move(), we have:

            // check shareable case
            if (target.isShareable()) {
                String msg =
                    "Moving a shareable node (" + safeGetJCRPath(srcPath)
                    + ") is not supported.";
                log.debug(msg);
                throw new UnsupportedRepositoryOperationException(msg);
            }

As far as I can tell, this doesn't seem to be backed by the JCR spec.

  was:
In BatchedItemOperation,move, we have:

            // check shareable case
            if (target.isShareable()) {
                String msg =
                    "Moving a shareable node (" + safeGetJCRPath(srcPath)
                    + ") is not supported.";
                log.debug(msg);
                throw new UnsupportedRepositoryOperationException(msg);
            }

As far as I can tell, this doesn't seem to be backed by the JCR spec.

    
> move() on shareable nodes unsupported
> -------------------------------------
>
>                 Key: JCR-3381
>                 URL: https://issues.apache.org/jira/browse/JCR-3381
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-core
>    Affects Versions: 2.6
>            Reporter: Julian Reschke
>            Priority: Minor
>
> In BatchedItemOperation.move(), we have:
>             // check shareable case
>             if (target.isShareable()) {
>                 String msg =
>                     "Moving a shareable node (" + safeGetJCRPath(srcPath)
>                     + ") is not supported.";
>                 log.debug(msg);
>                 throw new UnsupportedRepositoryOperationException(msg);
>             }
> As far as I can tell, this doesn't seem to be backed by the JCR spec.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira