com.atlassian.crowd.acceptance.tests.directory
Class ImmutableUser
java.lang.Object
com.atlassian.crowd.acceptance.tests.directory.ImmutableUser
- All Implemented Interfaces:
- User, DirectoryEntity, java.lang.Comparable<User>, java.security.Principal
public final class ImmutableUser
- extends java.lang.Object
- implements User
|
Constructor Summary |
ImmutableUser(long directoryId,
java.lang.String name,
java.lang.String firstName,
java.lang.String lastName,
java.lang.String displayName,
java.lang.String emailAddress)
|
|
Method Summary |
int |
compareTo(User other)
CompareTo must be compatible with the equals() and hashCode() methods |
boolean |
equals(java.lang.Object o)
Implementations must ensure equality based on
getDirectoryId() and case-insensitive getName(). |
long |
getDirectoryId()
|
java.lang.String |
getDisplayName()
|
java.lang.String |
getEmailAddress()
|
java.lang.String |
getFirstName()
|
java.lang.String |
getLastName()
|
java.lang.String |
getName()
|
int |
hashCode()
Implementations must produce a hashcode based on
getDirectoryId() and case-insensitive getName(). |
boolean |
isActive()
|
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.security.Principal |
toString |
ImmutableUser
public ImmutableUser(long directoryId,
java.lang.String name,
java.lang.String firstName,
java.lang.String lastName,
java.lang.String displayName,
java.lang.String emailAddress)
getDirectoryId
public long getDirectoryId()
- Specified by:
getDirectoryId in interface User- Specified by:
getDirectoryId in interface DirectoryEntity
- Returns:
- id of the directory in which the DirectoryEntity is stored.
getName
public java.lang.String getName()
- Specified by:
getName in interface DirectoryEntity- Specified by:
getName in interface java.security.Principal
- Returns:
- name of the entity.
getFirstName
public java.lang.String getFirstName()
getLastName
public java.lang.String getLastName()
getEmailAddress
public java.lang.String getEmailAddress()
- Specified by:
getEmailAddress in interface User
- Returns:
- email address of the user.
getDisplayName
public java.lang.String getDisplayName()
- Specified by:
getDisplayName in interface User
- Returns:
- display name (eg. full name) of the user, must never be null.
isActive
public boolean isActive()
- Specified by:
isActive in interface User
- Returns:
true if and only if the user is allowed to authenticate.
equals
public boolean equals(java.lang.Object o)
- Description copied from interface:
DirectoryEntity
- Implementations must ensure equality based on
getDirectoryId() and case-insensitive getName().
- Specified by:
equals in interface User- Specified by:
equals in interface DirectoryEntity- Specified by:
equals in interface java.security.Principal- Overrides:
equals in class java.lang.Object
- Parameters:
o - object to compare to.
- Returns:
true if and only if the directoryId
and the lowercase names of the directory entities match.
hashCode
public int hashCode()
- Description copied from interface:
DirectoryEntity
- Implementations must produce a hashcode based on
getDirectoryId() and case-insensitive getName().
- Specified by:
hashCode in interface User- Specified by:
hashCode in interface DirectoryEntity- Specified by:
hashCode in interface java.security.Principal- Overrides:
hashCode in class java.lang.Object
- Returns:
- hashcode.
compareTo
public int compareTo(User other)
- Description copied from interface:
User
- CompareTo must be compatible with the equals() and hashCode() methods
- Specified by:
compareTo in interface User- Specified by:
compareTo in interface java.lang.Comparable<User>
Copyright © 2012 Atlassian. All Rights Reserved.