aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/data
diff options
context:
space:
mode:
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/data')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java8
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/data/Cookie.java6
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java14
3 files changed, 14 insertions, 14 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java b/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java
index c1588fe22..4fc35c1e6 100644
--- a/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java
+++ b/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java
@@ -161,7 +161,7 @@ public class AuthenticationData {
/**
* Sets the publicAuthorityCode.
- * @param publicAuthorityCode The publicAuthorityCode to set
+ * @param publicAuthorityIdentification The publicAuthorityCode to set
*/
public void setPublicAuthorityCode(String publicAuthorityIdentification) {
this.publicAuthorityCode = publicAuthorityIdentification;
@@ -299,8 +299,8 @@ public class AuthenticationData {
* Sets the familyName.
* @param familyName The familyName to set
*/
- public void setFamilyName(String gamilyName) {
- this.familyName = gamilyName;
+ public void setFamilyName(String familyName) {
+ this.familyName = familyName;
}
/**
@@ -361,7 +361,7 @@ public class AuthenticationData {
/**
* Sets the signer certificate
- * @param url The signer certificate
+ * @param signerCertificate The signer certificate
*/
public void setSignerCertificate(String signerCertificate) {
this.signerCertificate = signerCertificate;
diff --git a/id.server/src/at/gv/egovernment/moa/id/data/Cookie.java b/id.server/src/at/gv/egovernment/moa/id/data/Cookie.java
index 5729e54c3..6ed133c5a 100644
--- a/id.server/src/at/gv/egovernment/moa/id/data/Cookie.java
+++ b/id.server/src/at/gv/egovernment/moa/id/data/Cookie.java
@@ -23,7 +23,7 @@ public class Cookie {
/**
* Adds a Cookie from a response with response-code 401 to the cookie-pool
* for sending it back to the browser / client
- * @param String: the complete 'Set-Cookie' - String
+ * @param cookieString The complete 'Set-Cookie' - String
*/
public void add401(String cookieString)
{
@@ -50,7 +50,7 @@ public class Cookie {
/**
* Set a cookie that comes from the Online-Application
* and save it in our "normal" cookie-pool
- * @param String the complete "Set-Cookie" - String from the Online-Application
+ * @param value The complete "Set-Cookie" - String from the Online-Application
*/
public void setCookie(String value) {
cookies.put(getKey(value), getValue(value));
@@ -58,7 +58,7 @@ public class Cookie {
/**
* Method saveOldCookies.
- * @param String the complete "Set-Cookie" - String from the Online-Application
+ * @param value The complete "Set-Cookie" - String from the Online-Application
*/
public void saveOldCookies(String value) {
StringTokenizer st = new StringTokenizer(value,";");
diff --git a/id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java b/id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java
index 98f84c429..1762a52b7 100644
--- a/id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java
+++ b/id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java
@@ -27,10 +27,10 @@ public class CookieManager {
/**
* Save a cookie to a specified session-id
- * @param String id the session id
- * @param String cookie_string - the complete 'Set-Cookie' String from the OnlineApplication
+ * @param id The session id
+ * @param cookie_string The complete 'Set-Cookie' String from the OnlineApplication
*/
- public void saveCookie(String id,String cookie_string)
+ public void saveCookie(String id, String cookie_string)
{
getCookieWithID(id).setCookie(cookie_string);
}
@@ -47,8 +47,8 @@ public class CookieManager {
/**
* Get a Cookie-Object for a specified session-id
- * @param String id the session id
- * @return Cookie object containing all saved cookies for this session
+ * @param id The session id
+ * @return Cookie object containing all saved cookies for this session
*/
public Cookie getCookieWithID(String id)
{
@@ -84,8 +84,8 @@ public class CookieManager {
* Adds a Cookie for a special session from a response with
* response-code 401 to the cookie-pool for sending it back
* to the browser / client
- * @param id the session-id
- * @param String: the complete 'Set-Cookie' - String
+ * @param id The session-id
+ * @param value The complete 'Set-Cookie' - String
*/
public void add401(String id,String value)
{