aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
diff options
context:
space:
mode:
authorpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:56:27 +0000
committerpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:56:27 +0000
commitb573a90aa69b3d66b0a800d76398ef41f5ccb022 (patch)
tree63e1eafa75ae9cda1e4d3fa8d8b010c755115d81 /id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
parent6016b8782baa28a290b672693ff951c44a05bf22 (diff)
downloadmoa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.tar.gz
moa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.tar.bz2
moa-id-spss-b573a90aa69b3d66b0a800d76398ef41f5ccb022.zip
Fixed Javadoc
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@864 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java b/id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
index 12d29ba82..90d79a46d 100644
--- a/id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
+++ b/id.server/src/at/gv/egovernment/moa/id/auth/data/AuthenticationSession.java
@@ -126,7 +126,7 @@ public class AuthenticationSession {
/**
* Sets the sessionID.
- * @param sessionID The sessionID to set
+ * @param sessionId The sessionID to set
*/
public void setSessionID(String sessionId) {
this.sessionID = sessionId;
@@ -168,24 +168,24 @@ public class AuthenticationSession {
* Sets the oaURLRequested.
* @param oaURLRequested The oaURLRequested to set
*/
- public void setOAURLRequested(String url) {
- this.oaURLRequested = url;
+ public void setOAURLRequested(String oaURLRequested) {
+ this.oaURLRequested = oaURLRequested;
}
/**
* Sets the oaPublicURLPrefix
- * @param url The oaPublicURLPrefix to set
+ * @param oaPublicURLPrefix The oaPublicURLPrefix to set
*/
- public void setPublicOAURLPrefix(String url) {
- this.oaPublicURLPrefix = url;
+ public void setPublicOAURLPrefix(String oaPublicURLPrefix) {
+ this.oaPublicURLPrefix = oaPublicURLPrefix;
}
/**
* Sets the bkuURL
- * @param url The BKU URL to set
+ * @param bkuURL The BKU URL to set
*/
- public void setBkuURL(String url) {
- this.bkuURL = url;
+ public void setBkuURL(String bkuURL) {
+ this.bkuURL = bkuURL;
}
/**