Java Doc for I_JoRemoteSession.java in  » Web-Server » jo » com » tagtraum » jobalancer » 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 » Web Server » jo » com.tagtraum.jobalancer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.tagtraum.jobalancer.I_JoRemoteSession

All known Subclasses:   com.tagtraum.jobalancer.JoRemoteSession,
I_JoRemoteSession
public interface I_JoRemoteSession extends Remote(Code)
Realizes a remote session object that can be wrapped by a JoRemoteSessionWrapper . TODO: Translate comments to Enlgish!
author:
   Hendrik Schreiber
version:
   1.1beta1 $Id: I_JoRemoteSession.java,v 1.5 2005/03/15 20:09:44 hendriks73 Exp $


Field Summary
public static  Stringvcid
    


Method Summary
public  ObjectgetAttribute(String name)
     Gibt ein in dieser Session hinterlegtes Objekt zurück.
public  EnumerationgetAttributeNames()
     Gibt eine Enumeration mit allen Schlüsseln zurück, unter denen ein Objekt an diese Session gebunden wurde.
public  longgetCreationTime()
     Gibt die Zeit zurück, zu der diese Session erzeugt wurde.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
public  StringgetId()
     Gibt den Indentifikationsstring dieser Session zurück.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
public  longgetLastAccessedTime()
     Gibt die Zeit zurück, zu der diese Session das letzte mal benutzt wurde.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
public  intgetMaxInactiveInterval()
     Gibt die maximale Zeit, die eine Session inaktiv existieren kann, in Sekunden zurück.
public  String[]getValueNames()
     Gibt einen Array mit allen Schlüsseln zurück, unter denen ein Objekt an diese Session gebunden wurde.
public  voidinvalidate()
     Erkl�rt diese Session für ungültig.
public  booleanisNew()
     Gibt an, ob eine Session neu ist.
public  booleanisValid()
     Indicates whether this session is still valid.
public  voidmarkAccessed()
     Markiert den Zeitpunkt der letzten Nutzung.
public  voidremoveAttribute(String name)
     Entfernt ein in dieser Session hinterlegtes Objekt zurück.
public  voidsetAttribute(String name, Object value)
     Hinterlegt ein Objekt unter einem Schlüssel in dieser Session.
public  voidsetId(String anID)
     Setzt den Indentifikationsstring dieser Session.
public  voidsetMaxInactiveInterval(int interval)
     Setzt die maximale Zeit, die eine Session inaktiv existieren kann.
public  voidsetSessionContext(I_JoRemoteSessionContext aContext)
     Sets the sessioncontext of this session.

Field Detail
vcid
public static String vcid(Code)
Source-Version





Method Detail
getAttribute
public Object getAttribute(String name) throws RemoteException(Code)
Gibt ein in dieser Session hinterlegtes Objekt zurück.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
Parameters:
  name - Schlüssel Objekt



getAttributeNames
public Enumeration getAttributeNames() throws RemoteException(Code)
Gibt eine Enumeration mit allen Schlüsseln zurück, unter denen ein Objekt an diese Session gebunden wurde. Enumeration mit allen Schlüsseln.



getCreationTime
public long getCreationTime() throws RemoteException(Code)
Gibt die Zeit zurück, zu der diese Session erzeugt wurde.
exception:
  IllegalStateException - falls die Session bereits ungültig ist. Zeit in ms seit 1.1.1970 UTC



getId
public String getId() throws RemoteException(Code)
Gibt den Indentifikationsstring dieser Session zurück.
exception:
  IllegalStateException - falls die Session bereits ungültig ist. SessionID



getLastAccessedTime
public long getLastAccessedTime() throws RemoteException(Code)
Gibt die Zeit zurück, zu der diese Session das letzte mal benutzt wurde.
exception:
  IllegalStateException - falls die Session bereits ungültig ist. Zeit in ms seit 1.1.1970 UTC



getMaxInactiveInterval
public int getMaxInactiveInterval() throws RemoteException(Code)
Gibt die maximale Zeit, die eine Session inaktiv existieren kann, in Sekunden zurück. Zeit in Sekunden.



getValueNames
public String[] getValueNames() throws RemoteException(Code)
Gibt einen Array mit allen Schlüsseln zurück, unter denen ein Objekt an diese Session gebunden wurde. Array mit allen Schlüsseln.



invalidate
public void invalidate() throws RemoteException(Code)
Erkl�rt diese Session für ungültig.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.



isNew
public boolean isNew() throws RemoteException(Code)
Gibt an, ob eine Session neu ist. Die genaue Definition von neu ist der Servlet-API-Spezifikation zu entnehmen. true oder false



isValid
public boolean isValid() throws RemoteException(Code)
Indicates whether this session is still valid.



markAccessed
public void markAccessed() throws RemoteException(Code)
Markiert den Zeitpunkt der letzten Nutzung.



removeAttribute
public void removeAttribute(String name) throws RemoteException(Code)
Entfernt ein in dieser Session hinterlegtes Objekt zurück.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
Parameters:
  name - Schlüssel



setAttribute
public void setAttribute(String name, Object value) throws RemoteException(Code)
Hinterlegt ein Objekt unter einem Schlüssel in dieser Session.
exception:
  IllegalStateException - falls die Session bereits ungültig ist.
Parameters:
  name - Schlüssel
Parameters:
  name - Objekt



setId
public void setId(String anID) throws RemoteException(Code)
Setzt den Indentifikationsstring dieser Session.
exception:
  IllegalStateException - falls die SessionID bereits gesetzt worden ist.



setMaxInactiveInterval
public void setMaxInactiveInterval(int interval) throws RemoteException(Code)
Setzt die maximale Zeit, die eine Session inaktiv existieren kann.
Parameters:
  interval - Zeit in Sekunden.



setSessionContext
public void setSessionContext(I_JoRemoteSessionContext aContext) throws RemoteException(Code)
Sets the sessioncontext of this session.
Parameters:
  aContext - zugehöriger SessionContext
exception:
  IllegalStateException - falls der SessionContext bereits gesetzt worden ist.



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