KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > feature > proactive > client > SessionElement


1 /*
2  * SessionElement.java
3  *
4  * Created on May 16, 2003, 4:57 AM
5  */

6
7 package com.quikj.application.web.talk.feature.proactive.client;
8
9 import java.util.*;
10
11 /**
12  *
13  * @author amit
14  */

15 public class SessionElement
16 {
17     
18     /** Holds value of property sessionId. */
19     private String JavaDoc sessionId;
20     
21     /** Holds value of property url. */
22     private String JavaDoc url;
23     
24     /** Holds value of property accessTime. */
25     private Date accessTime;
26     
27     /** Holds value of property siteEntryTime. */
28     private Date siteEntryTime;
29     
30     /** Holds value of property pageCount. */
31     private int pageCount = 0;
32     
33     /** Holds value of property stopCount. */
34     private int stopCount = 0;
35     
36     /** Creates a new instance of SessionElement */
37     public SessionElement()
38     {
39     }
40     
41     /** Getter for property sessionId.
42      * @return Value of property sessionId.
43      *
44      */

45     public String JavaDoc getSessionId()
46     {
47         return this.sessionId;
48     }
49     
50     /** Setter for property sessionId.
51      * @param sessionId New value of property sessionId.
52      *
53      */

54     public void setSessionId(String JavaDoc sessionId)
55     {
56         this.sessionId = sessionId;
57     }
58     
59     /** Getter for property url.
60      * @return Value of property url.
61      *
62      */

63     public String JavaDoc getUrl()
64     {
65         return this.url;
66     }
67     
68     /** Setter for property url.
69      * @param url New value of property url.
70      *
71      */

72     public void setUrl(String JavaDoc url)
73     {
74         this.url = url;
75     }
76     
77     /** Getter for property accessTime.
78      * @return Value of property accessTime.
79      *
80      */

81     public Date getAccessTime()
82     {
83         return this.accessTime;
84     }
85     
86     /** Setter for property accessTime.
87      * @param accessTime New value of property accessTime.
88      *
89      */

90     public void setAccessTime(Date accessTime)
91     {
92         this.accessTime = accessTime;
93     }
94     
95     /** Getter for property siteEntryTime.
96      * @return Value of property siteEntryTime.
97      *
98      */

99     public Date getSiteEntryTime()
100     {
101         return this.siteEntryTime;
102     }
103     
104     /** Setter for property siteEntryTime.
105      * @param siteEntryTime New value of property siteEntryTime.
106      *
107      */

108     public void setSiteEntryTime(Date siteEntryTime)
109     {
110         this.siteEntryTime = siteEntryTime;
111     }
112     
113     /** Getter for property pageCount.
114      * @return Value of property pageCount.
115      *
116      */

117     public int getPageCount()
118     {
119         return this.pageCount;
120     }
121     
122     /** Setter for property pageCount.
123      * @param pageCount New value of property pageCount.
124      *
125      */

126     public void setPageCount(int pageCount)
127     {
128         this.pageCount = pageCount;
129     }
130     
131     /** Getter for property stopCount.
132      * @return Value of property stopCount.
133      *
134      */

135     public int getStopCount()
136     {
137         return this.stopCount;
138     }
139     
140     /** Setter for property stopCount.
141      * @param stopCount New value of property stopCount.
142      *
143      */

144     public void setStopCount(int stopCount)
145     {
146         this.stopCount = stopCount;
147     }
148     
149 }
150
Popular Tags