1
0
mirror of synced 2026-08-05 01:36:56 +00:00

SecurityContextImpl constructor

Fixes gh-4712
This commit is contained in:
Rob Winch
2017-10-25 12:56:03 -05:00
parent ef197d8215
commit 399da1ecad
@@ -35,6 +35,12 @@ public class SecurityContextImpl implements SecurityContext {
private Authentication authentication;
public SecurityContextImpl() {}
public SecurityContextImpl(Authentication authentication) {
this.authentication = authentication;
}
// ~ Methods
// ========================================================================================================