com.atlassian.confluence.security
Interface DeactivatedUserChecker

All Known Implementing Classes:
CrowdDeactivatedUserChecker, CrowdDisabledUserManager

Deprecated. since 3.5 use DisabledUserManager instead

public interface DeactivatedUserChecker

Class for checking whether a user is deactivated. Deactivating a user removes all access for that user to Confluence. The user account however is not deleted and allowed to remain in the system to preserve authorship of the content they contributed.


Method Summary
 boolean isDeactivated(String username)
          Deprecated. since 3.5 use DisabledUserManager.isDisabled(String) instead
 boolean isDeactivated(com.atlassian.user.User user)
          Deprecated. since 3.5 use DisabledUserManager.isDisabled(com.atlassian.crowd.embedded.api.User) instead
 

Method Detail

isDeactivated

boolean isDeactivated(com.atlassian.user.User user)
Deprecated. since 3.5 use DisabledUserManager.isDisabled(com.atlassian.crowd.embedded.api.User) instead

Determines if the specified user is deactivated.

Parameters:
user - The user object
Returns:
true if the specified user is deactivated, false otherwise.

isDeactivated

boolean isDeactivated(String username)
Deprecated. since 3.5 use DisabledUserManager.isDisabled(String) instead

Determines if the specified user is deactivated.

Parameters:
username - The username of the user
Returns:
true if the specified user is deactivated, false otherwise.


Confluence is developed by Atlassian.