org.systinet.wasp.admin.security
Class RawUserEntry

java.lang.Object
  extended byorg.systinet.wasp.admin.security.RawUserEntry

public class RawUserEntry
extends java.lang.Object

User Entry but instead of map there is an array of property objects.

Component:
Security-Services

Constructor Summary
RawUserEntry()
          Constructs empty object
RawUserEntry(java.lang.String userId, UserProperty[] properties)
          Constructs object with specified values
 
Method Summary
 UserProperty[] getProperties()
          Returns all properties of the user.
 java.lang.String getUserId()
          Returns Id of the user.
 void setProperties(UserProperty[] properties)
          Sets all properties of the user.
 void setUserId(java.lang.String userId)
          Sets Id of the user.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RawUserEntry

public RawUserEntry()
Constructs empty object


RawUserEntry

public RawUserEntry(java.lang.String userId,
                    UserProperty[] properties)
Constructs object with specified values

Parameters:
userId - user identification
properties - array of property objects
Method Detail

getUserId

public java.lang.String getUserId()
Returns Id of the user.

Returns:
The UserId value

setUserId

public void setUserId(java.lang.String userId)
Sets Id of the user.

Parameters:
userId - The UserId value

getProperties

public UserProperty[] getProperties()
Returns all properties of the user.

Returns:
The Properties of the user

setProperties

public void setProperties(UserProperty[] properties)
Sets all properties of the user.

Parameters:
properties - The Properties of the user