Source Code Cross Referenced for AclService.java in  » Security » acegi-security » org » acegisecurity » acls » 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 » Security » acegi security » org.acegisecurity.acls 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
02:         *
03:         * Licensed under the Apache License, Version 2.0 (the "License");
04:         * you may not use this file except in compliance with the License.
05:         * You may obtain a copy of the License at
06:         *
07:         *     http://www.apache.org/licenses/LICENSE-2.0
08:         *
09:         * Unless required by applicable law or agreed to in writing, software
10:         * distributed under the License is distributed on an "AS IS" BASIS,
11:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12:         * See the License for the specific language governing permissions and
13:         * limitations under the License.
14:         */
15:        package org.acegisecurity.acls;
16:
17:        import org.acegisecurity.acls.objectidentity.ObjectIdentity;
18:        import org.acegisecurity.acls.sid.Sid;
19:
20:        import java.util.Map;
21:
22:        /**
23:         * Provides retrieval of {@link Acl} instances.
24:         *
25:         * @author Ben Alex
26:         * @version $Id: AclService.java 1784 2007-02-24 21:00:24Z luke_t $
27:         */
28:        public interface AclService {
29:            //~ Methods ========================================================================================================
30:
31:            /**
32:             * Locates all object identities that use the specified parent.  This is useful for administration tools.
33:             *
34:             * @param parentIdentity to locate children of
35:             *
36:             * @return the children (or <code>null</code> if none were found)
37:             */
38:            ObjectIdentity[] findChildren(ObjectIdentity parentIdentity);
39:
40:            /**
41:             * Same as {@link #readAclsById(ObjectIdentity[])} except it returns only a single Acl.<p>This method
42:             * should not be called as it does not leverage the underlaying implementation's potential ability to filter
43:             * <code>Acl</code> entries based on a {@link Sid} parameter.</p>
44:             *
45:             * @param object DOCUMENT ME!
46:             *
47:             * @return DOCUMENT ME!
48:             *
49:             * @throws NotFoundException DOCUMENT ME!
50:             */
51:            Acl readAclById(ObjectIdentity object) throws NotFoundException;
52:
53:            /**
54:             * Same as {@link #readAclsById(ObjectIdentity[], Sid[])} except it returns only a single Acl.
55:             *
56:             * @param object DOCUMENT ME!
57:             * @param sids DOCUMENT ME!
58:             *
59:             * @return DOCUMENT ME!
60:             *
61:             * @throws NotFoundException DOCUMENT ME!
62:             */
63:            Acl readAclById(ObjectIdentity object, Sid[] sids)
64:                    throws NotFoundException;
65:
66:            /**
67:             * Obtains all the <code>Acl</code>s that apply for the passed <code>Object</code>s.<p>The returned map is
68:             * keyed on the passed objects, with the values being the <code>Acl</code> instances. Any unknown objects will not
69:             * have a map key.</p>
70:             *
71:             * @param objects the objects to find ACL information for
72:             *
73:             * @return a map with zero or more elements (never <code>null</code>)
74:             *
75:             * @throws NotFoundException DOCUMENT ME!
76:             */
77:            Map readAclsById(ObjectIdentity[] objects) throws NotFoundException;
78:
79:            /**
80:             * Obtains all the <code>Acl</code>s that apply for the passed <code>Object</code>s, but only for the
81:             * security identifies passed.<p>Implementations <em>MAY</em> provide a subset of the ACLs via this method
82:             * although this is NOT a requirement. This is intended to allow performance optimisations within implementations.
83:             * Callers should therefore use this method in preference to the alternative overloaded version which does not
84:             * have performance optimisation opportunities.</p>
85:             *  <p>The returned map is keyed on the passed objects, with the values being the <code>Acl</code>
86:             * instances. Any unknown objects (or objects for which the interested <code>Sid</code>s do not have entries) will
87:             * not have a map key.</p>
88:             *
89:             * @param objects the objects to find ACL information for
90:             * @param sids the security identities for which ACL information is required (may be <code>null</code> to denote
91:             *        all entries)
92:             *
93:             * @return a map with zero or more elements (never <code>null</code>)
94:             *
95:             * @throws NotFoundException DOCUMENT ME!
96:             */
97:            Map readAclsById(ObjectIdentity[] objects, Sid[] sids)
98:                    throws NotFoundException;
99:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.