Skip to content

Commit

Permalink
BSR
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Nov 7, 2023
1 parent d33cbc9 commit 6c1e0a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import myconext.exceptions.UserNotFoundException;
import myconext.geo.GeoLocation;
import myconext.mail.MailBox;
import myconext.manage.MockServiceProviderResolver;
import myconext.manage.ServiceProviderHolder;
import myconext.manage.ServiceProviderResolver;
import myconext.model.*;
Expand Down Expand Up @@ -73,7 +72,7 @@ public class GuestIdpAuthenticationRequestFilter extends OncePerRequestFilter im
private final AntPathRequestMatcher continueAfterloginSamlRequestMatcher;
private final String redirectUrl;
private final AuthenticationRequestRepository authenticationRequestRepository;
private UserRepository userRepository;
private UserRepository userRepository;
private final UserLoginRepository userLoginRepository;
private final List<String> accountLinkingContextClassReferences;
private final GeoLocation geoLocation;
Expand All @@ -82,7 +81,7 @@ public class GuestIdpAuthenticationRequestFilter extends OncePerRequestFilter im
private final boolean secureCookie;
private final String magicLinkUrl;
private final MailBox mailBox;
private ServiceProviderResolver serviceProviderResolver;
private ServiceProviderResolver serviceProviderResolver;
private final ExecutorService executor;
private final int nudgeAppDays;
private final int rememberMeQuestionAskedDays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public SamlSecurity(@Value("${private_key_path}") Resource privateKeyPath,
SAMLConfiguration configuration = new SAMLConfiguration(
new SAMLIdentityProvider(keys[0], keys[1], idpEntityId),
serviceProviders,
false
requiresSignedAuthnRequest
);
this.guestIdpAuthenticationRequestFilter = new GuestIdpAuthenticationRequestFilter(
redirectUrl,
Expand Down

0 comments on commit 6c1e0a1

Please sign in to comment.