You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2019/10/29 12:29:12 UTC

svn commit: r1869110 - /jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java

Author: reschke
Date: Tue Oct 29 12:29:12 2019
New Revision: 1869110

URL: http://svn.apache.org/viewvc?rev=1869110&view=rev
Log:
OAK-8707: Mark exported APIs that we don't want to expose with an @Internal annotation - Javadoc fix

Modified:
    jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java

Modified: jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java?rev=1869110&r1=1869109&r2=1869110&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java (original)
+++ jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/annotations/Internal.java Tue Oct 29 12:29:12 2019
@@ -33,12 +33,13 @@ import java.lang.annotation.Target;
  * Elements annotated @Internal are -- although possibly exported -- intended
  * for Oak's internal use only. Such elements are not public by design and
  * likely to be removed, have their signature change, or have their access level
- * decreased in future versions without notice. @Internal elements are eligible
- * for immediate modification or removal and are not subject to any policies
- * with respect to deprecation.
+ * decreased in future versions without notice. {@code @Internal} elements are
+ * eligible for immediate modification or removal and are not subject to any
+ * policies with respect to deprecation.
  * <p>
  * Note that Oak APIs are considered internal use by default, unless the package
- * they appear in is annotated with a {@link @Version} annotation with a value
+ * they appear in is annotated with a
+ * {@link org.osgi.annotation.versioning.Version} annotation with a value
  * greater than "1.0.0".
  */
 @Documented