jdk/src/share/classes/java/net/NetPermission.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8566 e2df5f8fa082
child 14667 6862285acf46
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8566
diff changeset
     2
 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.StringTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * This class is for various network permissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * A NetPermission contains a name (also referred to as a "target name") but
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * no actions list; you either have the named permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * or you don't.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * The target name is the name of the network permission (see below). The naming
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * convention follows the  hierarchical property naming convention.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * Also, an asterisk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * may appear at the end of the name, following a ".", or by itself, to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * signify a wildcard match. For example: "foo.*" or "*" is valid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * "*foo" or "a*b" is not valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * The following table lists all the possible NetPermission target names,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * and for each provides a description of what the permission allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * and a discussion of the risks of granting code the permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <table border=1 cellpadding=5 summary="Permission target name, what the permission allows, and associated risks">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <th>Permission Target Name</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <th>What the Permission Allows</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <th>Risks of Allowing this Permission</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <tr>
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    58
 *   <td>allowHttpTrace</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    59
 *   <td>The ability to use the HTTP TRACE method in HttpURLConnection.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    60
 *   <td>Malicious code using HTTP TRACE could get access to security sensitive
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    61
 *   information in the HTTP headers (such as cookies) that it might not
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    62
 *   otherwise have access to.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    63
 *   </tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <tr>
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    66
 *   <td>getCookieHandler</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    67
 *   <td>The ability to get the cookie handler that processes highly
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    68
 *   security sensitive cookie information for an Http session.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    69
 *   <td>Malicious code can get a cookie handler to obtain access to
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    70
 *   highly security sensitive cookie information. Some web servers
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    71
 *   use cookies to save user private information such as access
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    72
 *   control information, or to track user browsing habit.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    73
 *   </tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <tr>
8566
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    76
 *  <td>getNetworkInformation</td>
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    77
 *  <td>The ability to retrieve all information about local network interfaces.</td>
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    78
 *  <td>Malicious code can read information about network hardware such as
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    79
 *  MAC addresses, which could be used to construct local IPv6 addresses.</td>
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    80
 * </tr>
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    81
 *
e2df5f8fa082 7024264: HttpURLConnection/NetPermission doc issue
michaelm
parents: 7668
diff changeset
    82
 * <tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *   <td>getProxySelector</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *   <td>The ability to get the proxy selector used to make decisions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *   on which proxies to use when making network connections.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *   <td>Malicious code can get a ProxySelector to discover proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *   hosts and ports on internal networks, which could then become
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *   targets for attack.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * <tr>
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    92
 *   <td>getResponseCache</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    93
 *   <td>The ability to get the response cache that provides
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    94
 *   access to a local response cache.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    95
 *   <td>Malicious code getting access to the local response cache
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    96
 *   could access security sensitive information.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    97
 *   </tr>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    98
 *
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
    99
 * <tr>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   100
 *   <td>requestPasswordAuthentication</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   101
 *   <td>The ability
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   102
 * to ask the authenticator registered with the system for
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   103
 * a password</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   104
 *   <td>Malicious code may steal this password.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   105
 * </tr>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   106
 *
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   107
 * <tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *   <td>setCookieHandler</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *   <td>The ability to set the cookie handler that processes highly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 *   security sensitive cookie information for an Http session.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *   <td>Malicious code can set a cookie handler to obtain access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *   highly security sensitive cookie information. Some web servers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *   use cookies to save user private information such as access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *   control information, or to track user browsing habit.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *   </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * <tr>
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   118
 *   <td>setDefaultAuthenticator</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   119
 *   <td>The ability to set the
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   120
 * way authentication information is retrieved when
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   121
 * a proxy or HTTP server asks for authentication</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   122
 *   <td>Malicious
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   123
 * code can set an authenticator that monitors and steals user
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   124
 * authentication input as it retrieves the input from the user.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   125
 * </tr>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   126
 *
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   127
 * <tr>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   128
 *   <td>setProxySelector</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   129
 *   <td>The ability to set the proxy selector used to make decisions
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   130
 *   on which proxies to use when making network connections.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   131
 *   <td>Malicious code can set a ProxySelector that directs network
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   132
 *   traffic to an arbitrary network host.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   133
 * </tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 *   <td>setResponseCache</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *   <td>The ability to set the response cache that provides access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 *   a local response cache.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *   <td>Malicious code getting access to the local response cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 *   could access security sensitive information, or create false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 *   entries in the response cache.</td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 *   </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * <tr>
6875
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   145
 *   <td>specifyStreamHandler</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   146
 *   <td>The ability
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   147
 * to specify a stream handler when constructing a URL</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   148
 *   <td>Malicious code may create a URL with resources that it would
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   149
normally not have access to (like file:/foo/fum/), specifying a
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   150
stream handler that gets the actual bytes from someplace it does
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   151
have access to. Thus it might be able to trick the system into
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   152
creating a ProtectionDomain/CodeSource for a class even though
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   153
that class really didn't come from that location.</td>
81d6ec3397e5 6981426: limit use of TRACE method in HttpURLConnection
michaelm
parents: 5506
diff changeset
   154
 * </tr>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * @see java.security.BasicPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * @see java.security.Permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * @see java.security.Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * @see java.security.PermissionCollection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * @see java.lang.SecurityManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * @author Marianne Mueller
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * @author Roland Schemers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
public final class NetPermission extends BasicPermission {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    private static final long serialVersionUID = -8343910153355041693L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Creates a new NetPermission with the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * The name is the symbolic name of the NetPermission, such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * "setDefaultAuthenticator", etc. An asterisk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * may appear at the end of the name, following a ".", or by itself, to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * signify a wildcard match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @param name the name of the NetPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @throws NullPointerException if <code>name</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @throws IllegalArgumentException if <code>name</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    public NetPermission(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        super(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * Creates a new NetPermission object with the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * The name is the symbolic name of the NetPermission, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * actions String is currently unused and should be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @param name the name of the NetPermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @param actions should be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @throws NullPointerException if <code>name</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @throws IllegalArgumentException if <code>name</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    public NetPermission(String name, String actions)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        super(name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
}