Home | History | Annotate | Download | only in security

Lines Matching full:permissions

14  *  See the License for the specific language governing permissions and
37 * and a set of granted Permissions.
49 // Permissions collection
50 private final Collection<Permission> permissions;
57 Collection<? extends Permission> permissions) {
61 this.permissions = (permissions == null || permissions.isEmpty()) ? null
62 : Collections.unmodifiableCollection(permissions);
108 * Returns unmodifiable collection of permissions defined by this
112 return permissions;
116 * Returns true if this PolicyEntry defines no Permissions, false otherwise.
119 return permissions == null || permissions.size() == 0;