GUACAMOLE-393: Add AuthenticationProvider shutdown hook.

This commit is contained in:
Michael Jumper
2017-05-29 21:21:48 -07:00
parent 45adf2fd93
commit 2c587e5f9f
9 changed files with 67 additions and 1 deletions

View File

@@ -107,4 +107,9 @@ public class CASAuthenticationProvider implements AuthenticationProvider {
}
@Override
public void shutdown() {
// Do nothing
}
}

View File

@@ -102,4 +102,9 @@ public class DuoAuthenticationProvider implements AuthenticationProvider {
return context;
}
@Override
public void shutdown() {
// Do nothing
}
}

View File

@@ -107,4 +107,9 @@ public class HTTPHeaderAuthenticationProvider implements AuthenticationProvider
}
@Override
public void shutdown() {
// Do nothing
}
}

View File

@@ -104,4 +104,9 @@ public abstract class InjectedAuthenticationProvider implements AuthenticationPr
authenticatedUser, credentials);
}
@Override
public void shutdown() {
// Do nothing
}
}

View File

@@ -103,5 +103,10 @@ public class LDAPAuthenticationProvider implements AuthenticationProvider {
return context;
}
@Override
public void shutdown() {
// Do nothing
}
}