summaryrefslogtreecommitdiff
path: root/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2019-06-28 13:11:42 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2019-06-28 13:11:42 +0200
commitb5018668a538b7931feabb109ac176db53b02976 (patch)
treea61c896ba6804dd5f7c781c96bc8325a51c28f10 /eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java
parent2f5e847f58464c0aba8221bf87b31de8fca53393 (diff)
downloadEAAF-Components-b5018668a538b7931feabb109ac176db53b02976.tar.gz
EAAF-Components-b5018668a538b7931feabb109ac176db53b02976.tar.bz2
EAAF-Components-b5018668a538b7931feabb109ac176db53b02976.zip
add some mockups for testing
Diffstat (limited to 'eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java')
-rw-r--r--eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java b/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java
new file mode 100644
index 00000000..a50e92cb
--- /dev/null
+++ b/eaaf_core/src/test/java/at/gv/egiz/eaaf/core/impl/idp/module/test/DummyProtocolAuthService.java
@@ -0,0 +1,42 @@
+package at.gv.egiz.eaaf.core.impl.idp.module.test;
+
+import java.io.IOException;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import at.gv.egiz.eaaf.core.api.IRequest;
+import at.gv.egiz.eaaf.core.api.idp.auth.services.IProtocolAuthenticationService;
+import at.gv.egiz.eaaf.core.exceptions.EAAFException;
+
+public class DummyProtocolAuthService implements IProtocolAuthenticationService {
+
+ @Override
+ public void performAuthentication(HttpServletRequest req, HttpServletResponse resp, IRequest pendingReq)
+ throws IOException, EAAFException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void finalizeAuthentication(HttpServletRequest req, HttpServletResponse resp, IRequest pendingReq)
+ throws EAAFException, IOException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void buildProtocolSpecificErrorResponse(Throwable throwable, HttpServletRequest req,
+ HttpServletResponse resp, IRequest pendingReq) throws IOException, EAAFException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void handleErrorNoRedirect(Throwable throwable, HttpServletRequest req, HttpServletResponse resp,
+ boolean writeExceptionToStatisticLog) throws IOException, EAAFException {
+ // TODO Auto-generated method stub
+
+ }
+
+}