01: /*
02: * SessionData.java
03: *
04: * Created on July 10, 2002, 8:55 PM
05: */
06:
07: package com.mimer.ws.validateSQL;
08:
09: /**
10: *
11: * @author olle
12: */
13: public class SessionData {
14:
15: /** Holds value of property sessionId. */
16: private int sessionId;
17:
18: /** Holds value of property sessionKey. */
19: private int sessionKey;
20:
21: /** Holds value of property target. */
22: private String target;
23:
24: /** Creates a new instance of SessionData */
25: public SessionData() {
26: }
27:
28: /** Getter for property sessionId.
29: * @return Value of property sessionId.
30: */
31: public int getSessionId() {
32: return this .sessionId;
33: }
34:
35: /** Setter for property sessionId.
36: * @param sessionId New value of property sessionId.
37: */
38: public void setSessionId(int sessionId) {
39: this .sessionId = sessionId;
40: }
41:
42: /** Getter for property sessionKey.
43: * @return Value of property sessionKey.
44: */
45: public int getSessionKey() {
46: return this .sessionKey;
47: }
48:
49: /** Setter for property sessionKey.
50: * @param sessionKey New value of property sessionKey.
51: */
52: public void setSessionKey(int sessionKey) {
53: this .sessionKey = sessionKey;
54: }
55:
56: /** Getter for property target.
57: * @return Value of property target.
58: */
59: public String getTarget() {
60: return this .target;
61: }
62:
63: /** Setter for property target.
64: * @param target New value of property target.
65: */
66: public void setTarget(String target) {
67: this.target = target;
68: }
69:
70: }
|