GUACAMOLE-393: Merge add extension logout/shutdown hooks

This commit is contained in:
Nick Couchman
2017-09-25 15:12:45 -04:00
18 changed files with 118 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

@@ -204,4 +204,9 @@ public class SharedUserContext implements UserContext {
return Collections.<Form>emptyList();
}
@Override
public void invalidate() {
// Nothing to invalidate
}
}

View File

@@ -191,4 +191,9 @@ public class ModeledUserContext extends RestrictedObject
return ModeledSharingProfile.ATTRIBUTES;
}
@Override
public void invalidate() {
// Nothing to invalidate
}
}

View File

@@ -136,4 +136,9 @@ public abstract class RemoteAuthenticatedUser implements AuthenticatedUser {
return authenticationProvider;
}
@Override
public void invalidate() {
// Nothing to invalidate
}
}

View File

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

View File

@@ -229,4 +229,9 @@ public class UserContext implements org.apache.guacamole.net.auth.UserContext {
return Collections.<Form>emptyList();
}
@Override
public void invalidate() {
// Nothing to invalidate
}
}