domain object « Security « Spring Q&A





1. Good way to access Spring singleton from within domain objects?    stackoverflow.com

I have a domain model that consists of fairly large object graphs, where domain objects are creating other domain objects and so forth. Each of these domain objects needs access ...

2. Service & Domain Object Security    forum.springsource.org

Service & Domain Object Security After having spent a fair amount of time reading over Spring Security, I need to finalize a security design for both my service tier and domain ...

3. Spring Security ACL : necessity of "ID" field in domain objects    forum.springsource.org

Hi, I am trying to use the Spring Security ACL to implement domain object level security. Is it mandatory to have my primary key named as "id" with type as int ...

4. Isolating security from domain objects    forum.springsource.org

Isolating security from domain objects We are doing some prototypes to use ACEGI spring security framework for our spring/hibernate application. The requirements is that we should provide Object level security. i.e ...

5. Is Domain object instance security 1.5+ ?    forum.springsource.org

Hi all, Reading another post, I came across the "domain subproject" which apparently is only for JDK 1.5 and above. Googling and the acegi site didn't turn up much or I'm ...

6. Method Invocation security on domain objects?    forum.springsource.org

Method Invocation security on domain objects? Does anyone know of a good example of using AspectJ JoinPoints to secure domain objects? The Acegi sample application doesn't seem to, but I think ...

7. AccessDeniedException and domain object security    forum.springsource.org

AccessDeniedException and domain object security Hi, I looked through the forum and I think this specific question hasn't been posted yet.... I am using domain object security with ACLs. In the ...

8. Storing a domain object with authentication    forum.springsource.org

Storing a domain object with authentication Hi, In order to build custom authentication I understand that developers should implement UserDetailsService and implement loadUserByUsername method. Code: public class CustomAuth implements UserDetailsService { ...

9. Domain objects instance security    forum.springsource.org

Domain objects instance security Hi all, I have to manage authentication and authorization in a web application developed with spring and i'm evaluating to use acegi to do this. I read ...





10. Multiple users with same ACLs for domain object security    forum.springsource.org

Multiple users with same ACLs for domain object security Our system requires multiple users to have the same privileges on domain objects. These users can be created any time i.e. even ...

11. Domain Object Security w/o ACL?    forum.springsource.org

Hi. Can someone please help me to understand why you need a database to manage your ACL's and for that matter, why you need ACL's for Domain Object Security? If you ...

12. Role based + domain object security    forum.springsource.org

Role based + domain object security We are starting to develop a project management tool with the security model as below, it seems Spring Security cannot make it. 1. A User ...

13. Method level security on the domain objects    forum.springsource.org

Method level security on the domain objects I've got spring security up and running, using the basic system (not ACLs). I have my business logic secured via ADMIN/USER roles. I'm considering ...

14. Domain Object Security Issue    forum.springsource.org

Domain Object Security Issue Hi All, If somebody can suggest me a way of approaching the solution for follwing problem, i would be really thankful. Problem Statement: Application has different system ...

15. Best way to add domain object security    forum.springsource.org

Hi everyone, Each user in my application has a specific set of domain object instances they can access. And right now I'm using some very redundant access checks. For example, user ...

16. Multitenant app with roles that apply to subtree of domain objects    forum.springsource.org

Multitenant app with roles that apply to subtree of domain objects My application manages the accounts of many different customer sites. Each different site can have a ROLE_ADMIN user. That ADMIN ...