EAF 7.4 Implementation

com.lutris.appserver.server.user
Class UserImpl

java.lang.Object
  extended by com.lutris.appserver.server.user.UserImpl
All Implemented Interfaces:
com.lutris.appserver.server.user.User, java.io.Serializable

public class UserImpl
extends java.lang.Object
implements com.lutris.appserver.server.user.User

UserImpl object

User objects are compared in many places, equals must be work correctly for the particular implementation.

See Also:
Serialized Form

Constructor Summary
UserImpl(java.lang.String userName)
           
 
Method Summary
 java.lang.String getName()
          Get user name associated with the object.
 void setName(java.lang.String userName)
          Set user name associated with the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UserImpl

public UserImpl(java.lang.String userName)
Method Detail

getName

public java.lang.String getName()
Get user name associated with the object. The user name is assumed to be a unizue identifier for the user.

Specified by:
getName in interface com.lutris.appserver.server.user.User
Returns:
the user name that uniquely identifies the user.

setName

public void setName(java.lang.String userName)
Set user name associated with the object. The user name is assumed to be a unizue identifier for the user.


EAF 7.4 Implementation