org.acegisecurity

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 
org.acegisecurity
Provides core Acegi Security System for Spring interfaces and classes.
Java Source File NameTypeComment
AbstractAuthenticationManager.javaClass An abstract implementation of the AuthenticationManager .
AbstractAuthenticationManagerTests.javaClass Tests AbstractAuthenticationManager .
AccessDecisionManager.javaInterface Makes a final access control (authorization) decision.
AccessDeniedException.javaClass Thrown if an Authentication object does not hold a required authority.
AccountExpiredException.javaClass Thrown if an authentication request is rejected because the account has expired.
AcegiMessageSource.javaClass The default MessageSource used by Acegi Security.

All Acegi Security classes requiring messge localization will by default use this class.

AcegiMessageSourceTests.javaClass Tests org.acegisecurity.AcegiMessageSource .
AcegiSecurityException.javaClass Abstract superclass for all exceptions thrown in the security package and subpackages.

Note that this is a runtime (unchecked) exception.

AfterInvocationManager.javaInterface Reviews the Object returned from a secure object invocation, being able to modify the Object or throw an AccessDeniedException .

Typically used to ensure the principal is permitted to access the domain object instance returned by a service layer bean.

App.javaClass
AppTest.javaClass Unit test for simple App.
Authentication.javaInterface Represents an authentication request.
AuthenticationCredentialsNotFoundException.javaClass Thrown if an authentication request is rejected because there is no Authentication object in the org.acegisecurity.context.SecurityContext SecurityContext .
AuthenticationException.javaClass Abstract superclass for all exceptions related an Authentication object being invalid for whatever reason.
AuthenticationManager.javaInterface Processes an Authentication request.
AuthenticationServiceException.javaClass
AuthenticationTrustResolver.javaInterface
AuthenticationTrustResolverImpl.javaClass
AuthenticationTrustResolverImplTests.javaClass Tests org.acegisecurity.AuthenticationTrustResolverImpl .
AuthorizationServiceException.javaClass
BadCredentialsException.javaClass Thrown if an authentication request is rejected because the credentials are invalid.
BankService.javaInterface BankService sample using Java 5 Annotations.
BankServiceImpl.javaClass BankService sample implementation.
BankTests.javaClass Tests security objects.
ConfigAttribute.javaInterface Stores a security system related configuration attribute.

When an org.acegisecurity.intercept.AbstractSecurityInterceptor is setup, a list of configuration attributes is defined for secure object patterns.

ConfigAttributeDefinition.javaClass
ConfigAttributeEditor.javaClass
ConfigAttributeEditorTests.javaClass Tests ConfigAttributeEditor and associated ConfigAttributeDefinition .
CredentialsExpiredException.javaClass Thrown if an authentication request is rejected because the account's credentials have expired.
DisabledException.javaClass Thrown if an authentication request is rejected because the account is disabled.
GrantedAuthority.javaInterface Represents an authority granted to an Authentication object.
GrantedAuthorityImpl.javaClass
GrantedAuthorityImplTests.javaClass Tests GrantedAuthorityImpl .
InsufficientAuthenticationException.javaClass Thrown if an authentication request is rejected because the credentials are not sufficiently trusted.

{ org.acegisecurity.vote.AccessDecisionVoter s will typically throw this exception if they are dissatisfied with the level of the authentication, such as if performed using a remember-me mechanism or anonymously.

ITargetObject.javaInterface Represents the interface of a secured object.
LockedException.javaClass Thrown if an authentication request is rejected because the account is locked.
Main.javaClass
MockAccessDecisionManager.javaClass Grants access if the user holds any of the authorities listed in the configuration attributes starting with "MOCK_".
MockAclManager.javaClass Returns the indicated collection of AclEntrys when the given Authentication principal is presented for the indicated domain Object instance.
MockAfterInvocationManager.javaClass If there is a configuration attribute of "AFTER_INVOCATION_MOCK", modifies the return value to null.
MockApplicationContext.javaClass Simply returns an ApplicationContext which has a couple of ApplicationEvent listeners.
MockAuthenticationEntryPoint.javaClass Performs a HTTP redirect to the constructor-indicated URL.
MockAuthenticationManager.javaClass Simply accepts as valid whatever is passed to it, if grantAccess is set to true.
MockFilterChain.javaClass Mocks a FilterChain but with no behaviour.
MockFilterConfig.javaClass
MockJoinPoint.javaClass A mock AspectJ JoinPoint.
MockPortResolver.javaClass Always returns the constructor-specified HTTP and HTTPS ports.
MockRunAsAuthenticationToken.javaClass Simple holder that indicates the MockRunAsManager returned a different Authentication object.
MockRunAsManager.javaClass Returns a new run-as identity if configuration attribute RUN_AS is found.
OtherTargetObject.javaClass Simply extends TargetObject so we have a different object to put configuration attributes against.

There is no different behaviour.

PopulatedDatabase.javaClass Singleton which provides a populated database connection for all JDBC-related unit tests.
RunAsManager.javaInterface Creates a new temporary Authentication object for the current secure object invocation only.

This interface permits implementations to replace the Authentication object that applies to the current secure object invocation only.

SecurityConfig.javaClass Stores a ConfigAttribute as a String.
SecurityConfigTests.javaClass Tests SecurityConfig .
TargetObject.javaClass Represents a secured object.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.