mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-24 14:38:45 +00:00
Introduced OAuth
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
serviceClass: com.google.gwt.logging.shared.RemoteLoggingService
|
||||
path: D8354F129B90BCD8991531844AB1022F.gwt.rpc
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
|
||||
path: 8B735C8E798B98733A7E8B145C0120A5.gwt.rpc
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
|
||||
path: EEC5843F25ABA077B61E75156C653DD9.gwt.rpc
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
|
||||
path: AD1ADB31EBB60B39D94A60549A394B28.gwt.rpc
|
||||
@@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns="http://java.sun.com/xml/ns/javaee"
|
||||
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
|
||||
|
||||
|
||||
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
version="2.5">
|
||||
|
||||
|
||||
<!-- Apache Shiro -->
|
||||
<listener>
|
||||
<listener-class>org.apache.shiro.web.env.EnvironmentLoaderListener
|
||||
@@ -27,15 +27,38 @@
|
||||
<dispatcher>INCLUDE</dispatcher>
|
||||
<dispatcher>ERROR</dispatcher>
|
||||
</filter-mapping>
|
||||
|
||||
|
||||
|
||||
|
||||
<servlet>
|
||||
<display-name>User Management Service</display-name>
|
||||
<servlet-name>UserManagementService</servlet-name>
|
||||
<servlet-class>com.sap.sse.security.ui.server.UserManagementServiceImpl</servlet-class>
|
||||
<servlet-name>UserManagementService</servlet-name>
|
||||
<servlet-class>com.sap.sse.security.ui.server.UserManagementServiceImpl
|
||||
</servlet-class>
|
||||
</servlet>
|
||||
<servlet-mapping>
|
||||
<servlet-name>UserManagementService</servlet-name>
|
||||
<url-pattern>/service/usermanagement</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<servlet>
|
||||
<display-name>OAuth Login Service</display-name>
|
||||
<servlet-name>OAuthLogintService</servlet-name>
|
||||
<servlet-class>com.sap.sse.security.ui.oauth.server.OAuthLoginServiceImpl
|
||||
</servlet-class>
|
||||
</servlet>
|
||||
<servlet-mapping>
|
||||
<servlet-name>OAuthLogintService</servlet-name>
|
||||
<url-pattern>/service/oauthlogin</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- remote logging -->
|
||||
<servlet>
|
||||
<servlet-name>remoteLogging</servlet-name>
|
||||
<servlet-class>com.google.gwt.logging.server.RemoteLoggingServiceImpl
|
||||
</servlet-class>
|
||||
</servlet>
|
||||
<servlet-mapping>
|
||||
<servlet-name>remoteLogging</servlet-name>
|
||||
<url-pattern>/com.sap.sse.security.ui.OAuthLogin/remote_logging</url-pattern>
|
||||
</servlet-mapping>
|
||||
</web-app>
|
||||
|
||||
Reference in New Issue
Block a user