+1

authentication and authorization is certainly a crucial requirement
for any application. Since integrated with Roo already It would be
very nice if we could have a working example of Spring Security 3
authentication utilizing User and UserDetails implementations.
Something like the following entity that implements the following
methods:

@Entity
@Table(name = "app_user")
public class User extends Person implements UserDetails {

    GrantedAuthority[] getAuthorities();
    String getPassword();
    String getUsername();
    boolean isAccountNonExpired();
    boolean isAccountNonLocked();
    boolean isCredentialsNonExpired();
    boolean isEnabled();

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to