com.atlassian.crowd.security.demo.model
Class DemoUser

java.lang.Object
  extended by com.atlassian.crowd.security.demo.model.DemoUser
All Implemented Interfaces:
User, DirectoryEntity, Comparable<User>, Principal

public class DemoUser
extends Object
implements User


Constructor Summary
DemoUser(String name, String firstName, String lastName, boolean active, String emailAddress, String displayName, long directoryId)
           
 
Method Summary
 int compareTo(User user)
          CompareTo must be compatible with the equals() and hashCode() methods
 boolean equals(Object o)
          Implementations must ensure equality based on getDirectoryId() and case-insensitive getName().
 long getDirectoryId()
           
 String getDisplayName()
           
 String getEmailAddress()
           
 String getFirstName()
           
 String getLastName()
           
 String getName()
           
 int hashCode()
          Implementations must produce a hashcode based on getDirectoryId() and case-insensitive getName().
 boolean isActive()
           
static DemoUser newInstance(String name, String firstName, String lastName, boolean active, String email, String displayName)
          Creates a new user.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.security.Principal
toString
 

Constructor Detail

DemoUser

public DemoUser(String name,
                String firstName,
                String lastName,
                boolean active,
                String emailAddress,
                String displayName,
                long directoryId)
Method Detail

getFirstName

public String getFirstName()

getLastName

public String getLastName()

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.

isActive

public boolean isActive()
Specified by:
isActive in interface User
Returns:
true if and only if the user is allowed to authenticate.

getEmailAddress

public String getEmailAddress()
Specified by:
getEmailAddress in interface User
Returns:
email address of the user.

getDisplayName

public String getDisplayName()
Specified by:
getDisplayName in interface User
Returns:
display name (eg. full name) of the user, must never be null.

compareTo

public int compareTo(User user)
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 Comparable<User>

getName

public String getName()
Specified by:
getName in interface DirectoryEntity
Specified by:
getName in interface Principal
Returns:
name of the entity.

equals

public boolean equals(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 Principal
Overrides:
equals in class 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 Principal
Overrides:
hashCode in class Object
Returns:
hashcode.

newInstance

public static DemoUser newInstance(String name,
                                   String firstName,
                                   String lastName,
                                   boolean active,
                                   String email,
                                   String displayName)
Creates a new user.



Copyright © 2012 Atlassian. All Rights Reserved.