Single Sign On (SSO) Standard Web Admin Application
Spring Security, JOSSO, CAS, etc, cares about authentication and authorization. In most cases admin applications are very similar.
There are schemas for JDBC data sources, but there arent front-ends.
For example: http://www.josso.org/confluence/display/JOSSO1/Database+Setup or http://static.springsource.org/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#appendix-schema
Does anybody know a beautiful and tested third part web admin app to CRUD users and roles on Single Sign On开发者_如何学Python?
Would the Central Authentication Service project (CAS) fit the bill? It is a Java server that enables single server authentication in large multi-server application environments. It has a documented protocol that allows multiple servers to share the same authentication environment.
It includes a number of integration points. Servers in the authentication environment can use spring security integration to obtain the current authentication credentials from a CAS server. The CAS server itself can provide a login service. The CAS server can also integrate into common user databases such as LDAP/ActiveDirectory.
精彩评论