Skip to content

Commit 9a67628

Browse files
authored
Merge pull request #11 from kadampabookings/staging
August - December work
2 parents 2234855 + 30f329a commit 9a67628

File tree

254 files changed

+4516
-1655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+4516
-1655
lines changed

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
<module>webfx-stack-authn-login-ui-gateway</module>
6060
<module>webfx-stack-authn-login-ui-gateway-facebook-plugin</module>
6161
<module>webfx-stack-authn-login-ui-gateway-google-plugin</module>
62+
<module>webfx-stack-authn-login-ui-gateway-magiclink-plugin</module>
6263
<module>webfx-stack-authn-login-ui-gateway-mojoauth-plugin</module>
6364
<module>webfx-stack-authn-login-ui-gateway-password-plugin</module>
6465
<module>webfx-stack-authn-login-ui-gateway-webviewbased</module>
@@ -134,7 +135,9 @@
134135
<module>webfx-stack-orm-dql-querypush-interceptor</module>
135136
<module>webfx-stack-orm-dql-submit-interceptor</module>
136137
<module>webfx-stack-orm-entity</module>
138+
<module>webfx-stack-orm-entity-binding</module>
137139
<module>webfx-stack-orm-entity-controls</module>
140+
<module>webfx-stack-orm-entity-messaging</module>
138141
<module>webfx-stack-orm-expression</module>
139142
<module>webfx-stack-orm-reactive-call</module>
140143
<module>webfx-stack-orm-reactive-dql</module>
@@ -159,6 +162,7 @@
159162
<module>webfx-stack-session-state-server</module>
160163
<module>webfx-stack-session-vertx</module>
161164
<module>webfx-stack-ui-action</module>
165+
<module>webfx-stack-ui-action-tuner</module>
162166
<module>webfx-stack-ui-controls</module>
163167
<module>webfx-stack-ui-dialog</module>
164168
<module>webfx-stack-ui-exceptions</module>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import dev.webfx.platform.conf.ConfigLoader;
66
import dev.webfx.platform.console.Console;
77
import dev.webfx.stack.authn.AuthenticationService;
8-
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider;
8+
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway;
99
import dev.webfx.stack.push.server.PushServerService;
1010
import dev.webfx.stack.routing.router.Router;
1111
import dev.webfx.stack.routing.router.RoutingContext;
@@ -17,7 +17,7 @@
1717
/**
1818
* @author Bruno Salmon
1919
*/
20-
public class FacebookServerLoginGatewayProvider implements ServerLoginGatewayProvider {
20+
public class FacebookServerLoginGateway implements ServerLoginGateway {
2121

2222
private final static String CONFIG_PATH = "webfx.stack.authn.server.facebook";
2323
private final static String CLIENT_ID_CONF_KEY = "clientId";

webfx-stack-authn-login-server-gateway-facebook-plugin/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
exports dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook;
1919

2020
// Provided services
21-
provides dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider with dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGatewayProvider;
21+
provides dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway with dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGateway;
2222

2323
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGatewayProvider
1+
dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGateway

webfx-stack-authn-login-server-gateway-facebook-plugin/webfx.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</dependencies>
1212

1313
<providers>
14-
<provider interface="dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider">dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGatewayProvider</provider>
14+
<provider interface="dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway">dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGateway</provider>
1515
<!--
1616
<provider interface="dev.webfx.stack.conf.spi.ConfigurationConsumer">dev.webfx.stack.authn.login.spi.impl.server.gateway.facebook.FacebookServerLoginGatewayConfigurationConsumer</provider>
1717
-->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import dev.webfx.platform.conf.ConfigLoader;
66
import dev.webfx.platform.console.Console;
77
import dev.webfx.stack.authn.AuthenticationService;
8-
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider;
8+
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway;
99
import dev.webfx.stack.authn.oauth2.OAuth2Service;
1010
import dev.webfx.stack.push.server.PushServerService;
1111
import dev.webfx.stack.routing.router.Router;
@@ -18,7 +18,7 @@
1818
/**
1919
* @author Bruno Salmon
2020
*/
21-
public class GoogleServerLoginGatewayProvider implements ServerLoginGatewayProvider {
21+
public class GoogleServerLoginGateway implements ServerLoginGateway {
2222

2323
private final static String CONFIG_PATH = "webfx.stack.authn.server.google";
2424
private final static String CLIENT_ID_CONF_KEY = "clientId";

webfx-stack-authn-login-server-gateway-google-plugin/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
exports dev.webfx.stack.authn.login.spi.impl.server.gateway.google;
2020

2121
// Provided services
22-
provides dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider with dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGatewayProvider;
22+
provides dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway with dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGateway;
2323

2424
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGatewayProvider
1+
dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGateway

webfx-stack-authn-login-server-gateway-google-plugin/webfx.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</dependencies>
1212

1313
<providers>
14-
<provider interface="dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider">dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGatewayProvider</provider>
14+
<provider interface="dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway">dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGateway</provider>
1515
<!--
1616
<provider interface="dev.webfx.stack.conf.spi.ConfigurationConsumer">dev.webfx.stack.authn.login.spi.impl.server.gateway.google.GoogleServerLoginGatewayConfigurationConsumer</provider>
1717
-->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import dev.webfx.platform.console.Console;
77
import dev.webfx.platform.util.tuples.Pair;
88
import dev.webfx.stack.authn.AuthenticationService;
9-
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGatewayProvider;
9+
import dev.webfx.stack.authn.login.spi.impl.server.gateway.ServerLoginGateway;
1010
import dev.webfx.stack.push.server.PushServerService;
1111
import dev.webfx.stack.routing.router.Router;
1212
import dev.webfx.stack.routing.router.RoutingContext;
@@ -19,7 +19,7 @@
1919
/**
2020
* @author Bruno Salmon
2121
*/
22-
public class MojoAuthServerLoginGatewayProvider implements ServerLoginGatewayProvider {
22+
public class MojoAuthServerLoginGateway implements ServerLoginGateway {
2323

2424
private final static String CONFIG_PATH = "webfx.stack.authn.server.mojoauth";
2525
private final static String API_KEY_CONF_KEY = "apiKey";

0 commit comments

Comments
 (0)