Changes for page DomainPasswordLoginService implementations and backends
Last modified by wolfgang_glas@iteg_at on 2019-03-06 12.09:20
From version 1.1
edited by christoph_lechleitner@iteg_at
on 2012-09-19 04.21:19
on 2012-09-19 04.21:19
Change comment:
There is no comment for this version
To version 15.1
edited by christoph_lechleitner@iteg_at
on 2013-07-22 09.55:39
on 2013-07-22 09.55:39
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 - (HTTP)Login Service NG:DomainPasswordLoginService1 +DomainPasswordLoginService implementations and backends - Content
-
... ... @@ -1,34 +1,33 @@ 1 -This describes thedesign ideas forthenextgenerationoftheloginservicestuff.1 +(% style="font-size: 10.0pt;line-height: 13.0pt;" %)This page describes The Java interface is org.clazzes.util.sec.DomainPasswordLoginService from (%%)[[https:~~/~~/svn.clazzes.org/svn/util/trunk/clazzes-util/src/main/java/org/clazzes/util/sec/DomainPasswordLoginService.java>>url:https://svn.clazzes.org/svn/util/trunk/clazzes-util/src/main/java/org/clazzes/util/sec/DomainPasswordLoginService.java||style="font-size: 10.0pt;line-height: 13.0pt;" shape="rect"]] 2 2 3 -== {{id name="DomainPasswordLoginServiceimplementationsandbackends- BaseinterfaceDomainPasswordLoginService"/}}BaseinterfaceDomainPasswordLoginService ==3 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-DomainPasswordLoginServiceImplementations"/}}DomainPasswordLoginService Implementations == 4 4 5 - Thebaseinterfaceonly provides a loginverificationAPI, withoutany HTTP sessionhandling.5 +==== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Currentimplementations"/}}Current implementations ==== 6 6 7 -The Java interface isorg.clazzes.util.sec.DomainPasswordLoginServicefrom[[https:~~/~~/svn.clazzes.org/svn/util/trunk/clazzes-util/src/main/java/org/clazzes/util/sec/DomainPasswordLoginService.java>>url:https://svn.clazzes.org/svn/util/trunk/clazzes-util/src/main/java/org/clazzes/util/sec/DomainPasswordLoginService.java||shape="rect"]]7 +The following implementations are available: 8 8 9 -We plan the following implmentations now: 9 +* [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.ldap.WebHome]], supporting LDAP backends like ADS 10 +* [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.jaas.WebHome]], using container provided JAAS authentication 11 +* [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.sql.WebHome]], using any legacy SQL database, i.e. one managed by [[SDS (SQL Directory Service)>>doc:LOGIN.SDS (SQL Directory Service).WebHome]] 12 +* [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.http.WebHome]], supporting a HTTP based API and therefore allowing for custom adapters to any backend there is 13 +* [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.broker.WebHome]], providing access to all other login services available in the OSGi container, selecting the mechanism by the request's authentication domain 10 10 11 -* org.clazzes.login.http 12 -* org.clazzes.login.jaas 13 -* org.clazzes.login.ldap 15 +For testing them there is a testpad webapp using [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.adapter\.http.WebHome]], see there. 14 14 15 - Wewillcreate anewsvn repository"login".17 +===== {{id name="DomainPasswordLoginServiceimplementationsandbackends-MavenandSubversionrepository"/}}Maven and Subversion repository ===== 16 16 17 - Fortesting:19 +All implementations have the new maven {{code language="none"}}groupId{{/code}}, {{code language="none"}}org.clazzes.login{{/code}}, and a new svn repository: [[https:~~/~~/svn.clazzes.org/svn/login>>url:https://svn.clazzes.org/svn/login/||shape="rect"]]. 18 18 19 - *org.clazzes.login.sandbox (Testapp toplay with theimplementationsandtesttheinterface in severalenvironments with diverse backends)21 +==== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Ideasforfutureimplementations"/}}Ideas for future implementations ==== 20 20 21 - Future ideasfor implementations:23 +* If not out of scope: {{code language="none"}}org.clazzes.login.openid{{/code}} (like provided by Wordpress, Google, Facebook, ...) or Mozilla's upcoming counterpart. 22 22 23 -* org.clazzes.login.jdbc (Standalone using local Database) 24 -* If not out of scope: org.clazzes.login.openid (like provided by Wordpress, Google, Facebook, ...) 25 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-OSGiwrapperHttpLoginServiceAdapterandTestpad"/}}OSGi wrapper HttpLoginServiceAdapter and Testpad == 25 25 26 - =={{id name="DomainPasswordLoginServiceimplementationsandbackends-OSGiwrapperHttpLoginServiceAdapter"/}}OSGiwrapperHttpLoginServiceAdapter==27 +The OSGi side for the new login serivce approach consists of one small bundle, [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.adapter\.http.WebHome]], that listens for providers of the {{code language="none"}}DomainPasswordLoginService{{/code}} interface and exports them adapted as [[HttpLoginService>>url:http://svn.clazzes.org/svn/util/tags/http-util-1.1.0/src/main/java/org/clazzes/util/http/sec/HttpLoginService.java||shape="rect"]]. 27 27 28 - TheOSGisideexists of one small bundlethat listens for providers of theDomainPasswordLoginServiceinterfaceand exports themadapted as a HttpLoginService (see [[https:~~/~~/svn.clazzes.org/svn/util/trunk/http-util/src/main/java/org/clazzes/util/http/sec/HttpLoginService.java>>url:https://svn.clazzes.org/svn/util/trunk/http-util/src/main/java/org/clazzes/util/http/sec/HttpLoginService.java||shape="rect"]]).29 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-DomainPasswordLoginServicebackendSDS"/}}DomainPasswordLoginService backend SDS == 29 29 30 - CurrentLoginServicescombiningloginAPI and HTTP session handling will becomeobsolete: gwt-jaas-login-service,gwt-ldap-login-service, gwt-http-login-service({{codelanguage="none"}}https://svn.clazzes.org/svn/gwt/trunk/gwt-*-login-service{{/code}}).31 +We are currently in the process of implementing a backend. 31 31 32 -Package for the wrapper: org.clazzes.login.adapter.http 33 - 34 - 33 +For now see [[http:~~/~~/svn.clazzes.org/svn/sds/trunk/>>url:http://svn.clazzes.org/svn/sds/trunk/||shape="rect"]] (SVN) and [[SDS>>url:https://jira.clazzes.org/browse/SDS||shape="rect"]] (JIRA).
- Confluence.Code.ConfluencePageClass[0]
-
- Id
-
... ... @@ -1,1 +1,1 @@ 1 -6886 811 +688756 - Title
-
... ... @@ -1,1 +1,1 @@ 1 - (HTTP)Login Service NG:DomainPasswordLoginService1 +DomainPasswordLoginService implementations and backends - URL
-
... ... @@ -1,1 +1,1 @@ 1 -https://clazzes.atlassian.net/wiki/spaces/LOGIN/pages/6886 81/(HTTP)Login Service NG:DomainPasswordLoginService1 +https://clazzes.atlassian.net/wiki/spaces/LOGIN/pages/688756/DomainPasswordLoginService implementations and backends