SecurityContextImpl constructor

Fixes gh-4712
This commit is contained in:
Rob Winch 2017-10-25 12:56:03 -05:00
parent ef197d8215
commit 399da1ecad
1 changed files with 6 additions and 0 deletions

View File

@ -35,6 +35,12 @@ public class SecurityContextImpl implements SecurityContext {
private Authentication authentication;
public SecurityContextImpl() {}
public SecurityContextImpl(Authentication authentication) {
this.authentication = authentication;
}
// ~ Methods
// ========================================================================================================