This project has retired. For details please refer to its Attic page.
UserInfo (Cocoon Authentication Block Implementation 1.0.0 API)

org.apache.cocoon.auth.impl
Class UserInfo

java.lang.Object
  extended byorg.apache.cocoon.auth.impl.UserInfo

public class UserInfo
extends Object

A simple bean holding user information like - the user name - the user password - the retry count - an expires date

Version:
$Id: UserInfo.html 1304280 2012-03-23 11:18:01Z ilgrosso $

Field Summary
protected  Date expires
           
protected  int id
           
protected  String password
           
protected  int retryCount
           
protected  String user
           
 
Constructor Summary
UserInfo()
           
 
Method Summary
 Date getExpires()
           
 int getId()
           
 String getPassword()
           
 int getRetryCount()
           
 String getUser()
           
 void setExpires(Date expires)
           
 void setId(int id)
           
 void setPassword(String password)
           
 void setRetryCount(int retryCount)
           
 void setUser(String user)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

protected int id

user

protected String user

password

protected String password

retryCount

protected int retryCount

expires

protected Date expires
Constructor Detail

UserInfo

public UserInfo()
Method Detail

getExpires

public Date getExpires()

setExpires

public void setExpires(Date expires)

getPassword

public String getPassword()

setPassword

public void setPassword(String password)

getRetryCount

public int getRetryCount()

setRetryCount

public void setRetryCount(int retryCount)

getUser

public String getUser()

setUser

public void setUser(String user)

getId

public int getId()

setId

public void setId(int id)


Copyright © 1999-2008 The Apache Software Foundation. All Rights Reserved.