< prev index next >

src/java.base/share/classes/javax/net/ssl/SSLPermission.java

Print this page




  86  * connections or the plaintext data that is transmitted.
  87  * </td>
  88  * </tr>
  89  *
  90  * </tbody>
  91  * </table>
  92  *
  93  * @see java.security.BasicPermission
  94  * @see java.security.Permission
  95  * @see java.security.Permissions
  96  * @see java.security.PermissionCollection
  97  * @see java.lang.SecurityManager
  98  *
  99  * @since 1.4
 100  * @author Marianne Mueller
 101  * @author Roland Schemers
 102  */
 103 
 104 public final class SSLPermission extends BasicPermission {
 105 

 106     private static final long serialVersionUID = -3456898025505876775L;
 107 
 108     /**
 109      * Creates a new SSLPermission with the specified name.
 110      * The name is the symbolic name of the SSLPermission, such as
 111      * "setDefaultAuthenticator", etc. An asterisk
 112      * may appear at the end of the name, following a ".", or by itself, to
 113      * signify a wildcard match.
 114      *
 115      * @param name the name of the SSLPermission.
 116      *
 117      * @throws NullPointerException if <code>name</code> is null.
 118      * @throws IllegalArgumentException if <code>name</code> is empty.
 119      */
 120 
 121     public SSLPermission(String name)
 122     {
 123         super(name);
 124     }
 125 


  86  * connections or the plaintext data that is transmitted.
  87  * </td>
  88  * </tr>
  89  *
  90  * </tbody>
  91  * </table>
  92  *
  93  * @see java.security.BasicPermission
  94  * @see java.security.Permission
  95  * @see java.security.Permissions
  96  * @see java.security.PermissionCollection
  97  * @see java.lang.SecurityManager
  98  *
  99  * @since 1.4
 100  * @author Marianne Mueller
 101  * @author Roland Schemers
 102  */
 103 
 104 public final class SSLPermission extends BasicPermission {
 105 
 106     @java.io.Serial
 107     private static final long serialVersionUID = -3456898025505876775L;
 108 
 109     /**
 110      * Creates a new SSLPermission with the specified name.
 111      * The name is the symbolic name of the SSLPermission, such as
 112      * "setDefaultAuthenticator", etc. An asterisk
 113      * may appear at the end of the name, following a ".", or by itself, to
 114      * signify a wildcard match.
 115      *
 116      * @param name the name of the SSLPermission.
 117      *
 118      * @throws NullPointerException if <code>name</code> is null.
 119      * @throws IllegalArgumentException if <code>name</code> is empty.
 120      */
 121 
 122     public SSLPermission(String name)
 123     {
 124         super(name);
 125     }
 126 
< prev index next >