Lines Matching refs:actions

51  * host specification and a set of "actions" specifying ways to
101 * The "resolve" action is implied when any of the other actions are present.
104 * The actions string is converted to lowercase before processing.
166 * No actions
171 * All actions
180 // the actions mask
184 * the actions string.
189 private String actions; // Left null as long as possible, then
245 * Creates a new SocketPermission object with the specified actions.
253 * The <i>actions</i> parameter contains a comma-separated list of the
254 * actions granted for the specified host (and port(s)). Possible actions are
370 // Set the integer mask that represents the actions
373 throw new IllegalArgumentException("invalid actions mask");
465 * Convert an action string to an integer actions mask.
786 * <li> <i>p</i>'s actions are a proper subset of this
787 * object's actions, and<p>
830 * the this object's actions.
835 * <li> Checks that "p"'s actions are a proper subset of the
836 * current object's actions.
971 * same hostname, port range, and actions as this
1062 * @return the actions mask.
1070 * Returns the "canonical string representation" of the actions in the
1072 * Always returns present actions in the following order:
1076 * @return the canonical string representation of the actions
1111 * Returns the canonical string representation of the actions.
1112 * Always returns present actions in the following order:
1115 * @return the canonical string representation of the actions.
1119 if (actions == null)
1120 actions = getActions(this.mask);
1122 return actions;
1143 * to a stream. The actions are serialized, and the superclass
1149 // Write out the actions. The superclass takes care of the name
1150 // call getActions to make sure actions field is initialized
1151 if (actions == null)
1165 init(getName(),getMask(actions));