This is an automated email from the ASF dual-hosted git repository.

reschke pushed a commit to branch OAK-11397
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git

commit 8b3e0f92644140d81fa0ff27d2ce8ca97653b4f9
Author: Julian Reschke <[email protected]>
AuthorDate: Fri Feb 14 14:22:32 2025 +0100

    OAK-11397: add new API for expanded names/paths
---
 .../src/main/java/org/apache/jackrabbit/api/JackrabbitSession.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/oak-jackrabbit-api/src/main/java/org/apache/jackrabbit/api/JackrabbitSession.java
 
b/oak-jackrabbit-api/src/main/java/org/apache/jackrabbit/api/JackrabbitSession.java
index 69da2d8ac4..db1bf7cb0d 100644
--- 
a/oak-jackrabbit-api/src/main/java/org/apache/jackrabbit/api/JackrabbitSession.java
+++ 
b/oak-jackrabbit-api/src/main/java/org/apache/jackrabbit/api/JackrabbitSession.java
@@ -283,17 +283,17 @@ public interface JackrabbitSession extends Session {
      * @param item the item for which to retrieve the name
      * @return the name of the item in expanded form.
      * @throws RepositoryException if another error occurs.
-     * @since 1.76.0
+     * @since 1.78.0
      * @see <a 
href="https://s.apache.org/jcr-2.0-spec/3_Repository_Model.html#3.2.5.1%20Expanded%20Form";>JCR
 2.0, 3.2.5.1 Expanded Form</a>
      */
     @NotNull String getExpandedName(@NotNull Item item) throws 
RepositoryException;
-    
+
     /**
      * Returns the expanded path of the given {@code Item}.
      * @param item the item for which to retrieve the name
      * @return the path of the item in expanded form.
      * @throws RepositoryException if another error occurs.
-     * @since 1.76.0
+     * @since 1.78.0
      * @see <a 
href="https://s.apache.org/jcr-2.0-spec/3_Repository_Model.html#3.2.5.1%20Expanded%20Form";>JCR
 2.0, 3.2.5.1 Expanded Form</a>
      */
     @NotNull String getExpandedPath(@NotNull Item item) throws 
RepositoryException;

Reply via email to