Introduced OAuth

This commit is contained in:
Benjamin Ebling
2014-06-05 17:31:20 +02:00
parent 739d15e05d
commit f47c838ead
54 changed files with 4585 additions and 25 deletions
@@ -0,0 +1,2 @@
serviceClass: com.google.gwt.logging.shared.RemoteLoggingService
path: D8354F129B90BCD8991531844AB1022F.gwt.rpc
@@ -0,0 +1,2 @@
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
path: 8B735C8E798B98733A7E8B145C0120A5.gwt.rpc
@@ -0,0 +1,2 @@
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
path: EEC5843F25ABA077B61E75156C653DD9.gwt.rpc
@@ -0,0 +1,2 @@
serviceClass: com.sap.sse.security.ui.oauth.shared.OAuthLoginService
path: AD1ADB31EBB60B39D94A60549A394B28.gwt.rpc
+32 -9
View File
@@ -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>