jdk/src/java.base/share/classes/java/lang/RuntimePermission.java
changeset 33875 c1c71107d45f
parent 32107 67aa4920495c
child 40798 acb8f3cd80b6
--- a/jdk/src/java.base/share/classes/java/lang/RuntimePermission.java	Fri Nov 20 15:34:12 2015 +0100
+++ b/jdk/src/java.base/share/classes/java/lang/RuntimePermission.java	Fri Nov 20 19:26:16 2015 +0100
@@ -348,6 +348,19 @@
  *   {@code java.util.spi.LocaleServiceProvider}</a> for more
  *   information.</td>
  * </tr>
+ *
+ * <tr>
+ *   <td>loggerFinder</td>
+ *   <td>This {@code RuntimePermission} is required to be granted to
+ *   classes which subclass or call methods on
+ *   {@code java.lang.System.LoggerFinder}. The permission is
+ *   checked during invocation of the abstract base class constructor, as
+ *   well as on the invocation of its public methods.
+ *   This permission ensures trust in classes which provide loggers
+ *   to system classes.</td>
+ *   <td>See {@link java.lang.System.LoggerFinder java.lang.System.LoggerFinder}
+ *   for more information.</td>
+ * </tr>
  * </table>
  *
  * @implNote