Java Doc for UserSession.java in  » Forum » JForum-2.1.8 » net » jforum » entities » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Forum » JForum 2.1.8 » net.jforum.entities 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.jforum.entities.UserSession

UserSession
public class UserSession implements Serializable(Code)
Stores information about user's session.
author:
   Rafael Steil
version:
   $Id: UserSession.java,v 1.37 2007/09/10 01:17:20 rafaelsteil Exp $


Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  UserSession()
    
public  UserSession(UserSession us)
    

Method Summary
public  voidcreateNewCaptcha()
    
public  voiddataToUser(User user)
     Sets a new user session information using information from an User instance.
public  voiddestroyCaptcha()
    
public  booleanequals(Object o)
    
public  booleangetAutoLogin()
    
public  BufferedImagegetCaptchaImage()
    
public  StringgetIp()
    
public  StringgetLang()
    
public  DategetLastVisit()
    
public  intgetPrivateMessages()
    
public  StringgetSessionId()
    
public  longgetSessionTime()
     Gets the session time.
public  DategetStartTime()
    
public  intgetUserId()
    
public  StringgetUsername()
    
public  inthashCode()
    
public  booleanisAdmin()
    
public  booleanisBot()
    
public  booleanisModerator()
    
public  booleanisModerator(int forumId)
    
public  voidmakeAnonymous()
     Makes the user's session "anoymous" - eg, the user.
public  voidregisterBasicInfo()
     Sets the startup and last visit time to now, as well set the user id to Anonymous.
public  DatesessionLastUpdate()
    
public  voidsetAutoLogin(boolean autoLogin)
     Enable or disable auto-login.
public  voidsetIp(String ip)
    
public  voidsetLang(String lang)
    
public  voidsetLastVisit(Date lastVisit)
     Set session last visit time.
public  voidsetPrivateMessages(int privateMessages)
    
public  voidsetSessionId(String sessionId)
    
public  voidsetSessionTime(long sessionTime)
    
public  voidsetStartTime(Date startTime)
     Set session's start time.
public  voidsetUserId(int userId)
    
public  voidsetUsername(String username)
    
public  voidupdateSessionTime()
     Update the session time.
public  booleanvalidateCaptchaResponse(String userResponse)
    

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
UserSession
public UserSession()(Code)



UserSession
public UserSession(UserSession us)(Code)




Method Detail
createNewCaptcha
public void createNewCaptcha()(Code)
create a new image captcha



dataToUser
public void dataToUser(User user)(Code)
Sets a new user session information using information from an User instance. This method sets the user id, username, the number of private messages, the session's start time ( set to the current date and time ) and the language.
Parameters:
  user - The User instance to get data from



destroyCaptcha
public void destroyCaptcha()(Code)
Destroy the current captcha validation is done



equals
public boolean equals(Object o)(Code)

See Also:   java.lang.Object.equals(java.lang.Object)



getAutoLogin
public boolean getAutoLogin()(Code)
Gets auto-login status true if auto-login is enabled, or false if disabled.



getCaptchaImage
public BufferedImage getCaptchaImage()(Code)
Get the captcha image to challenge the user BufferedImage the captcha image to challenge the user



getIp
public String getIp()(Code)



getLang
public String getLang()(Code)



getLastVisit
public Date getLastVisit()(Code)
Gets user's last visit time Time in miliseconds



getPrivateMessages
public int getPrivateMessages()(Code)
Returns the privateMessages.



getSessionId
public String getSessionId()(Code)
Gets the session id related to this user session A string with the session id



getSessionTime
public long getSessionTime()(Code)
Gets the session time. The session time



getStartTime
public Date getStartTime()(Code)
Gets user's session start time Start time in miliseconds



getUserId
public int getUserId()(Code)
Gets user's id The user id



getUsername
public String getUsername()(Code)
Gets the username The username



hashCode
public int hashCode()(Code)

See Also:   java.lang.Object.hashCode



isAdmin
public boolean isAdmin()(Code)
Checks if the user is an administrator true if the user is an administrator



isBot
public boolean isBot()(Code)
true if this user session is from any robot



isModerator
public boolean isModerator()(Code)
Checks if the user is a moderator true if the user has moderations rights



isModerator
public boolean isModerator(int forumId)(Code)
Checks if the user can moderate a forum
Parameters:
  forumId - the forum's id to check for moderation rights true if the user has moderations rights



makeAnonymous
public void makeAnonymous()(Code)
Makes the user's session "anoymous" - eg, the user. This method sets the session's start and last visit time to the current datetime, the user id to the return of a call to SystemGlobals.getIntValue(ConfigKeys.ANONYMOUS_USER_ID) and finally sets session attribute named "logged" to "0" will be considered a non-authenticated / anonymous user



registerBasicInfo
public void registerBasicInfo()(Code)
Sets the startup and last visit time to now, as well set the user id to Anonymous. This method is usually called when the user hits the forum for the first time.



sessionLastUpdate
public Date sessionLastUpdate()(Code)



setAutoLogin
public void setAutoLogin(boolean autoLogin)(Code)
Enable or disable auto-login.
Parameters:
  autoLogin - true or false to represent auto-login status



setIp
public void setIp(String ip)(Code)



setLang
public void setLang(String lang)(Code)



setLastVisit
public void setLastVisit(Date lastVisit)(Code)
Set session last visit time.
Parameters:
  lastVisit - Time in miliseconds



setPrivateMessages
public void setPrivateMessages(int privateMessages)(Code)

Parameters:
  privateMessages - The privateMessages to set.



setSessionId
public void setSessionId(String sessionId)(Code)



setSessionTime
public void setSessionTime(long sessionTime)(Code)



setStartTime
public void setStartTime(Date startTime)(Code)
Set session's start time.
Parameters:
  startTime - Start time in miliseconds



setUserId
public void setUserId(int userId)(Code)
Set user's id
Parameters:
  userId - The user id



setUsername
public void setUsername(String username)(Code)
Set user's name
Parameters:
  username - The username



updateSessionTime
public void updateSessionTime()(Code)
Update the session time.



validateCaptchaResponse
public boolean validateCaptchaResponse(String userResponse)(Code)
Validate the captcha response of user
Parameters:
  userResponse - String the captcha response from user boolean true if the answer is valid, otherwise return false



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.