Julian Reschke created JCR-3312:
-----------------------------------
Summary: AbstractSession.getItem should deal with identifier paths
Key: JCR-3312
URL: https://issues.apache.org/jira/browse/JCR-3312
Project: Jackrabbit Content Repository
Issue Type: Bug
Components: jackrabbit-jcr-commons
Reporter: Julian Reschke
Assignee: Julian Reschke
In OAK's SessionImpl, we currently do:
@Override
public Item getItem(String absPath) throws PathNotFoundException,
RepositoryException {
if (absPath.startsWith("[") && absPath.endsWith("]")) {
// TODO OAK-23 - maybe this code should be added in AbstractSession
return getNodeByIdentifier(absPath.substring(1, absPath.length() -
1));
} else {
return super.getItem(absPath);
}
}
AbstractSession could do this on it's own.
--
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