From b573a90aa69b3d66b0a800d76398ef41f5ccb022 Mon Sep 17 00:00:00 2001 From: "peter.danner" Date: Tue, 31 Jul 2007 14:56:27 +0000 Subject: Fixed Javadoc git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@864 d688527b-c9ab-4aba-bd8d-4036d912da1d --- .../src/at/gv/egovernment/moa/id/data/CookieManager.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'id.server/src/at/gv/egovernment/moa/id/data/CookieManager.java') 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) { -- cgit v1.2.3