com.atlassian.confluence.security
Interface DeactivatedUserChecker

All Known Implementing Classes:
CrowdDeactivatedUserChecker, CrowdDisabledUserManager

Deprecated. since 3.5 use UserAccessor.isDeactivated(User) instead

@Deprecated
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 UserAccessor.isDeactivated(String) instead
 boolean isDeactivated(com.atlassian.user.User user)
          Deprecated. since 3.5 use UserAccessor.isDeactivated(User) instead
 

Method Detail

isDeactivated

@Deprecated
boolean isDeactivated(com.atlassian.user.User user)
Deprecated. since 3.5 use UserAccessor.isDeactivated(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

@Deprecated
boolean isDeactivated(String username)
Deprecated. since 3.5 use UserAccessor.isDeactivated(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.


Copyright © 2003-2013 Atlassian. All Rights Reserved.