Java Doc for Acl.java in  » 6.0-JDK-Modules » j2me » java » security » acl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.security.acl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.security.acl.Acl

Acl
public interface Acl extends Owner(Code)
Interface representing an Access Control List (ACL). An Access Control List is a data structure used to guard access to resources.

An ACL can be thought of as a data structure with multiple ACL entries. Each ACL entry, of interface type AclEntry, contains a set of permissions associated with a particular principal. (A principal represents an entity such as an individual user or a group). Additionally, each ACL entry is specified as being either positive or negative. If positive, the permissions are to be granted to the associated principal. If negative, the permissions are to be denied.

The ACL Entries in each ACL observe the following rules:

  • Each principal can have at most one positive ACL entry and one negative entry; that is, multiple positive or negative ACL entries are not allowed for any principal. Each entry specifies the set of permissions that are to be granted (if positive) or denied (if negative).

  • If there is no entry for a particular principal, then the principal is considered to have a null (empty) permission set.

  • If there is a positive entry that grants a principal a particular permission, and a negative entry that denies the principal the same permission, the result is as though the permission was never granted or denied.

  • Individual permissions always override permissions of the group(s) to which the individual belongs. That is, individual negative permissions (specific denial of permissions) override the groups' positive permissions. And individual positive permissions override the groups' negative permissions.

The java.security.acl package provides the interfaces to the ACL and related data structures (ACL entries, groups, permissions, etc.), and the sun.security.acl classes provide a default implementation of the interfaces. For example, java.security.acl.Acl provides the interface to an ACL and the sun.security.acl.AclImpl class provides the default implementation of the interface.

The java.security.acl.Acl interface extends the java.security.acl.Owner interface. The Owner interface is used to maintain a list of owners for each ACL. Only owners are allowed to modify an ACL. For example, only an owner can call the ACL's addEntry method to add a new ACL entry to the ACL.
See Also:   java.security.acl.AclEntry
See Also:   java.security.acl.Owner
See Also:   java.security.acl.Acl.getPermissions
version:
   1.18, 00/02/02
author:
   Satish Dharmaraj





Method Summary
public  booleanaddEntry(Principal caller, AclEntry entry)
     Adds an ACL entry to this ACL.
public  booleancheckPermission(Principal principal, Permission permission)
     Checks whether or not the specified principal has the specified permission.
public  Enumerationentries()
     Returns an enumeration of the entries in this ACL.
public  StringgetName()
     Returns the name of this ACL.
public  EnumerationgetPermissions(Principal user)
     Returns an enumeration for the set of allowed permissions for the specified principal (representing an entity such as an individual or a group).
public  booleanremoveEntry(Principal caller, AclEntry entry)
     Removes an ACL entry from this ACL.
Parameters:
  caller - the principal invoking this method.
public  voidsetName(Principal caller, String name)
     Sets the name of this ACL.
Parameters:
  caller - the principal invoking this method.
public  StringtoString()
     Returns a string representation of the ACL contents.



Method Detail
addEntry
public boolean addEntry(Principal caller, AclEntry entry) throws NotOwnerException(Code)
Adds an ACL entry to this ACL. An entry associates a principal (e.g., an individual or a group) with a set of permissions. Each principal can have at most one positive ACL entry (specifying permissions to be granted to the principal) and one negative ACL entry (specifying permissions to be denied). If there is already an ACL entry of the same type (negative or positive) already in the ACL, false is returned.
Parameters:
  caller - the principal invoking this method. It must be anowner of this ACL.
Parameters:
  entry - the ACL entry to be added to this ACL. true on success, false if an entry of the same type(positive or negative) for the same principal is alreadypresent in this ACL.
exception:
  NotOwnerException - if the caller principalis not an owner of this ACL.



checkPermission
public boolean checkPermission(Principal principal, Permission permission)(Code)
Checks whether or not the specified principal has the specified permission. If it does, true is returned, otherwise false is returned. More specifically, this method checks whether the passed permission is a member of the allowed permission set of the specified principal. The allowed permission set is determined by the same algorithm as is used by the getPermissions method.
Parameters:
  principal - the principal, assumed to be a valid authenticated Principal.
Parameters:
  permission - the permission to be checked for. true if the principal has the specified permission, false otherwise.
See Also:   Acl.getPermissions



entries
public Enumeration entries()(Code)
Returns an enumeration of the entries in this ACL. Each element in the enumeration is of type AclEntry. an enumeration of the entries in this ACL.



getName
public String getName()(Code)
Returns the name of this ACL. the name of this ACL.
See Also:   Acl.setName



getPermissions
public Enumeration getPermissions(Principal user)(Code)
Returns an enumeration for the set of allowed permissions for the specified principal (representing an entity such as an individual or a group). This set of allowed permissions is calculated as follows:

  • If there is no entry in this Access Control List for the specified principal, an empty permission set is returned.

  • Otherwise, the principal's group permission sets are determined. (A principal can belong to one or more groups, where a group is a group of principals, represented by the Group interface.) The group positive permission set is the union of all the positive permissions of each group that the principal belongs to. The group negative permission set is the union of all the negative permissions of each group that the principal belongs to. If there is a specific permission that occurs in both the positive permission set and the negative permission set, it is removed from both.

    The individual positive and negative permission sets are also determined. The positive permission set contains the permissions specified in the positive ACL entry (if any) for the principal. Similarly, the negative permission set contains the permissions specified in the negative ACL entry (if any) for the principal. The individual positive (or negative) permission set is considered to be null if there is not a positive (negative) ACL entry for the principal in this ACL.

    The set of permissions granted to the principal is then calculated using the simple rule that individual permissions always override the group permissions. That is, the principal's individual negative permission set (specific denial of permissions) overrides the group positive permission set, and the principal's individual positive permission set overrides the group negative permission set.


Parameters:
  user - the principal whose permission set is to be returned. the permission set specifying the permissions the principal is allowed.



removeEntry
public boolean removeEntry(Principal caller, AclEntry entry) throws NotOwnerException(Code)
Removes an ACL entry from this ACL.
Parameters:
  caller - the principal invoking this method. It must be anowner of this ACL.
Parameters:
  entry - the ACL entry to be removed from this ACL. true on success, false if the entry is not part of this ACL.
exception:
  NotOwnerException - if the caller principal is notan owner of this Acl.



setName
public void setName(Principal caller, String name) throws NotOwnerException(Code)
Sets the name of this ACL.
Parameters:
  caller - the principal invoking this method. It must be anowner of this ACL.
Parameters:
  name - the name to be given to this ACL.
exception:
  NotOwnerException - if the caller principalis not an owner of this ACL.
See Also:   Acl.getName



toString
public String toString()(Code)
Returns a string representation of the ACL contents. a string representation of the ACL contents.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.