com.mimer.ws.validateSQL.SessionData Maven / Gradle / Ivy
/*
* SessionData.java
*
* Created on July 10, 2002, 8:55 PM
*/
package com.mimer.ws.validateSQL;
/**
*
* @author olle
*/
public class SessionData {
/** Holds value of property sessionId. */
private int sessionId;
/** Holds value of property sessionKey. */
private int sessionKey;
/** Holds value of property target. */
private String target;
/** Creates a new instance of SessionData */
public SessionData() {
}
/** Getter for property sessionId.
* @return Value of property sessionId.
*/
public int getSessionId() {
return this.sessionId;
}
/** Setter for property sessionId.
* @param sessionId New value of property sessionId.
*/
public void setSessionId(int sessionId) {
this.sessionId = sessionId;
}
/** Getter for property sessionKey.
* @return Value of property sessionKey.
*/
public int getSessionKey() {
return this.sessionKey;
}
/** Setter for property sessionKey.
* @param sessionKey New value of property sessionKey.
*/
public void setSessionKey(int sessionKey) {
this.sessionKey = sessionKey;
}
/** Getter for property target.
* @return Value of property target.
*/
public String getTarget() {
return this.target;
}
/** Setter for property target.
* @param target New value of property target.
*/
public void setTarget(String target) {
this.target = target;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy