summaryrefslogtreecommitdiff
path: root/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2019-04-12 13:36:24 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2019-04-12 13:36:24 +0200
commitf689c1e404b5cf22d17346da75a296c825a3ba03 (patch)
tree2fd3ae17613daab57ca0f993efb99bc7cf8558ce /eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java
parenta4d179661754e04c882c1686e3c83f1b458717df (diff)
downloadEAAF-Components-f689c1e404b5cf22d17346da75a296c825a3ba03.tar.gz
EAAF-Components-f689c1e404b5cf22d17346da75a296c825a3ba03.tar.bz2
EAAF-Components-f689c1e404b5cf22d17346da75a296c825a3ba03.zip
minor changes
Diffstat (limited to 'eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java')
-rw-r--r--eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java
index 85c609e0..8b0f2620 100644
--- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java
+++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/auth/services/ProtocolAuthenticationService.java
@@ -82,7 +82,7 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer
@Autowired(required=true) private IStatusMessenger statusMessager;
@Autowired(required=true) private IRequestStorage requestStorage;
- @Autowired private ISSOManager ssoManager;
+ @Autowired(required=false) private ISSOManager ssoManager;
@Autowired private IStatisticLogger statisticLogger;
@Autowired private IRevisionLogger revisionsLogger;
@@ -163,7 +163,7 @@ public class ProtocolAuthenticationService implements IProtocolAuthenticationSer
}
- } catch (Exception e) {
+ } catch (final Exception e) {
log.error("Finalize authentication protocol FAILED." , e);
buildProtocolSpecificErrorResponse(e, req, resp, pendingReq);