Home | History | Annotate | Download | only in security

Lines Matching refs:actions

26  * constitutes of a name and associated actions.
64 * Returns a comma separated string identifying the actions associated with
65 * this permission. The returned actions are in canonical form. For example:
74 * #getActions()} is invoked. Returns an empty String, if no actions are
77 * @return the actions associated with this permission or an empty string if
78 * no actions are associated with this permission.
150 * this {@code Permission} including its name and its actions.
156 String actions = getActions();
157 actions = (actions == null || actions.length() == 0) ? "" : " "
159 return "(" + getClass().getName() + " " + getName() + actions + ")";