This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Web Component Certification (SCWCD/OCPJWCD) and the fly likes Security Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Web Component Certification (SCWCD/OCPJWCD)
Reply Bookmark "Security " Watch "Security " New topic
Author

Security

Saurabh Naik
Ranch Hand

Joined: Apr 24, 2008
Posts: 87
Hello
I read the chapter security from HF book. but I am cofunsed..
If in my application there are 50 users and 3 roles i.e admin, user , guest . how can I assign these roles to my users ?
also confused in getUserInRole() and getUserPrinicpal() methods. what is the exact use of these methods ?

Thank you


SCJP 6 (88%), SCWCD 5 (78%), preparing for SCBCD
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35440
    
    9
See http://www.coderanch.com/t/444353/Web-Component-Certification-SCWCD/certification/User-Role-config-server

Those methods tell you the identty of the user who sent the request the servlet is currently working on (her user name), and which roles she has. This information can be used to personalize the response, and to check whether this user should be allowed access to the various parts/pages of the web app.


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Security
 
Similar Threads
Restricting Http methods thru tomcat configurations
implement security constraints and assign users
Declarative security : mapping user to security roles
Creating users programatically
How to assign users to security roles?