Last modified by wolfgang_glas@iteg_at on 2019-03-06 12.09:20

From version 16.1
edited by wolfgang_glas@iteg_at
on 2019-03-06 12.09:20
Change comment: There is no comment for this version
To version 6.1
edited by christoph_lechleitner@iteg_at
on 2013-02-02 05.21:47
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -DomainPasswordLoginService implementations and backends
1 +(HTTP)Login Service NG: DomainPasswordLoginService
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.wolfgang_glas@iteg_at
1 +XWiki.christoph_lechleitner@iteg_at
Content
... ... @@ -1,37 +1,40 @@
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"]]
1 +This describes the design ideas for the next generation of the login service stuff.
2 2  
3 -== {{id name="DomainPasswordLoginServiceimplementationsandbackends-DomainPasswordLoginServiceImplementations"/}}DomainPasswordLoginService Implementations ==
3 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-BaseinterfaceDomainPasswordLoginService"/}}Base interface DomainPasswordLoginService ==
4 4  
5 +The base interface only provides a login verification API, without any HTTP session handling.
6 +
7 +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||shape="rect"]]
8 +
9 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Implementations"/}}Implementations ==
10 +
5 5  ==== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Currentimplementations"/}}Current implementations ====
6 6  
7 7  The following implementations are available:
8 8  
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 [[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
15 +* [[confluencePage:page:OSGI.org.clazzes.login.http]]
16 +* [[confluencePage:page:OSGI.org.clazzes.login.jaas]]
17 +* [[confluencePage:page:OSGI.org.clazzes.login.ldap]]
14 14  
15 -For testing them there is a testpad webapp using [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.adapter\.http.WebHome]], see there.
19 +For testing them there is a testpad webapp using [[confluencePage:page:OSGI.org.clazzes.login.adapter.http]], see there.
16 16  
17 17  ===== {{id name="DomainPasswordLoginServiceimplementationsandbackends-MavenandSubversionrepository"/}}Maven and Subversion repository =====
18 18  
19 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"]].
20 20  
21 -== {{id name="DomainPasswordLoginServiceimplementationsandbackends-AuthenticationagainstexternalAuthenticationProviders"/}}Authentication against external Authentication Providers ==
25 +==== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Ideasforfutureimplementations"/}}Ideas for future implementations ====
22 22  
23 -* OAuth2/OpenID Connect client: [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.oauth.WebHome]] (authenticate against github, Google, microsoft cloud services,...).
27 +* org.clazzes.login.jdbc (Standalone using local Database)
28 +* If not out of scope: {{code language="none"}}org.clazzes.login.openid{{/code}} (like provided by Wordpress, Google, Facebook, ...) or Mozilla's upcoming counterpart.
24 24  
25 25  == {{id name="DomainPasswordLoginServiceimplementationsandbackends-OSGiwrapperHttpLoginServiceAdapterandTestpad"/}}OSGi wrapper HttpLoginServiceAdapter and Testpad ==
26 26  
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"]].
32 +The OSGi side for the new login serivce approach consists of one small bundle, [[confluencePage:page:OSGI.org.clazzes.login.adapter.http]], that listens for providers of the {{code language="none"}}DomainPasswordLoginService{{/code}} interface and exports them adapted as a ##[[HttpLoginService>>doc:GWTBASICS.GWT implementations of http-util HttpLoginService.HTTP login service.WebHome]]##.
28 28  
29 -== {{id name="DomainPasswordLoginServiceimplementationsandbackends-TokenOTPProvider"/}}Token OTP Provider ==
34 +== {{id name="DomainPasswordLoginServiceimplementationsandbackends-Deprecated/obsoleteHttpLoginServices"/}}Deprecated/obsolete HttpLoginServices ==
30 30  
31 -For adding two-factor authentication support, the module [[doc:LOGIN.DomainPasswordLoginService implementations and backends.org\.clazzes\.login\.yubikey.WebHome]] is provided, which has been
36 +Current {{code language="none"}}org.clazzes.gwt.login.*{{/code}} LoginServices combining login API and HTTP session handling will become obsolete: gwt-jaas-login-service,gwt-ldap-login-service, gwt-http-login-service ({{code language="none"}}https://svn.clazzes.org/svn/gwt/trunk/gwt-*-login-service{{/code}}).
32 32  
33 -== {{id name="DomainPasswordLoginServiceimplementationsandbackends-DomainPasswordLoginServicebackendSDS"/}}DomainPasswordLoginService backend SDS ==
38 +
34 34  
35 -We are currently in the process of implementing a backend.
36 -
37 -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).
40 +
Confluence.Code.ConfluencePageClass[0]
Id
... ... @@ -1,1 +1,1 @@
1 -688662
1 +688950
Title
... ... @@ -1,1 +1,1 @@
1 -DomainPasswordLoginService implementations and backends
1 +(HTTP)Login Service NG: DomainPasswordLoginService
URL
... ... @@ -1,1 +1,1 @@
1 -https://clazzes.atlassian.net/wiki/spaces/LOGIN/pages/688662/DomainPasswordLoginService implementations and backends
1 +https://clazzes.atlassian.net/wiki/spaces/LOGIN/pages/688950/(HTTP)Login Service NG: DomainPasswordLoginService