Lines Matching defs:name
45 * a name (also referred to as a "target name") but no actions
47 * The target name is the name of the permission (see below). The
50 * may appear at the end of the name, following a ".", or by itself, to
60 * <table border=1 cellpadding=5 summary="permission target name, what the permission allows, and associated risks">
118 * Creates a new <code>SQLPermission</code> object with the specified name.
119 * The name is the symbolic name of the <code>SQLPermission</code>.
121 * @param name the name of this <code>SQLPermission</code> object, which must
124 * @throws NullPointerException if <code>name</code> is <code>null</code>.
125 * @throws IllegalArgumentException if <code>name</code> is empty.
129 public SQLPermission(String name) {
130 super(name);
134 * Creates a new <code>SQLPermission</code> object with the specified name.
135 * The name is the symbolic name of the <code>SQLPermission</code>; the
139 * @param name the name of this <code>SQLPermission</code> object, which must
143 * @throws NullPointerException if <code>name</code> is <code>null</code>.
144 * @throws IllegalArgumentException if <code>name</code> is empty.
148 public SQLPermission(String name, String actions) {
149 super(name, actions);