summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-10-21 08:00:55 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-10-21 08:00:55 +0200
commitfe5b974390bed15d2421dfd14c54ef25d485b5ed (patch)
tree06ea4d7c4ff61582e37ac59f217f010625e08c82 /eaaf_core_api/src
parentfb3b0d1e345a792fa99f96b1af6c863a8693c1a1 (diff)
downloadEAAF-Components-fe5b974390bed15d2421dfd14c54ef25d485b5ed.tar.gz
EAAF-Components-fe5b974390bed15d2421dfd14c54ef25d485b5ed.tar.bz2
EAAF-Components-fe5b974390bed15d2421dfd14c54ef25d485b5ed.zip
add new configuration property to switch between log-level "WARN" and "INFO" based on internal errorIds
remove duplicated logging
Diffstat (limited to 'eaaf_core_api/src')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java
index d1d68c2d..2c0fe55f 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/services/IProtocolAuthenticationService.java
@@ -96,16 +96,16 @@ public interface IProtocolAuthenticationService {
/**
* Forward the process to error-handler in case of an error.
- *
+ *
* @param errorToHandle Error to handle
* @param errorKey ErrorId for error-handler
* @param req HTTP response
* @param resp HTTP response
* @throws GuiBuildException In case of an GUI generation error
*/
- void forwardToErrorHandler(Pair<IRequest, Throwable> errorToHandle, String errorKey,
+ void forwardToErrorHandler(Pair<IRequest, Throwable> errorToHandle, String errorKey,
HttpServletRequest req, HttpServletResponse resp) throws GuiBuildException;
-
-
-
+
+
+
}