< prev index next >

src/java.sql/share/classes/java/sql/SQLPermission.java

Print this page

        

*** 56,72 **** * The following table lists all the possible <code>SQLPermission</code> target names. * The table gives a description of what the permission allows * and a discussion of the risks of granting code the permission. * * ! * <table border=1 cellpadding=5 summary="permission target name, what the permission allows, and associated risks"> * <tr> * <th>Permission Target Name</th> * <th>What the Permission Allows</th> * <th>Risks of Allowing this Permission</th> * </tr> * * <tr> * <td>setLog</td> * <td>Setting of the logging stream</td> * <td>This is a dangerous permission to grant. * The contents of the log may contain usernames and passwords, --- 56,76 ---- * The following table lists all the possible <code>SQLPermission</code> target names. * The table gives a description of what the permission allows * and a discussion of the risks of granting code the permission. * * ! * <table class="striped"> ! * <caption style="display:none">permission target name, what the permission allows, and associated risks</caption> ! * <thead> * <tr> * <th>Permission Target Name</th> * <th>What the Permission Allows</th> * <th>Risks of Allowing this Permission</th> * </tr> + * </thead> * + * <tbody> * <tr> * <td>setLog</td> * <td>Setting of the logging stream</td> * <td>This is a dangerous permission to grant. * The contents of the log may contain usernames and passwords,
*** 101,110 **** --- 105,115 ---- * <td>Allows the invocation of the {@code DriverManager} * method {@code deregisterDriver}</td> * <td>Permits an application to remove a JDBC driver from the list of * registered Drivers and release its resources.</td> * </tr> + * </tbody> * </table> * * @since 1.3 * @see java.security.BasicPermission * @see java.security.Permission
< prev index next >