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 --- .../moa/id/auth/parser/CreateXMLSignatureResponseParser.java | 6 +++--- .../gv/egovernment/moa/id/auth/parser/ErrorResponseParser.java | 2 +- .../moa/id/auth/parser/InfoboxReadResponseParser.java | 10 ++++++---- 3 files changed, 10 insertions(+), 8 deletions(-) (limited to 'id.server/src/at/gv/egovernment/moa/id/auth/parser') diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/parser/CreateXMLSignatureResponseParser.java b/id.server/src/at/gv/egovernment/moa/id/auth/parser/CreateXMLSignatureResponseParser.java index 5e1df5157..a8b870f04 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/parser/CreateXMLSignatureResponseParser.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/parser/CreateXMLSignatureResponseParser.java @@ -71,10 +71,10 @@ public class CreateXMLSignatureResponseParser { * Parses and validates the document given as stream and extracts the * root element. * - * @param xmlResponse <CreateXMLSignatureResponse> as String + * @param is <InfoboxReadResponse> as InputStream * - * @throws AuthenticationException if any authentication error occurs - * @throws ParseException if an element cannot be parsed + * @throws AuthenticationException If any authentication error occurs + * @throws ParseException If an element cannot be parsed */ public CreateXMLSignatureResponseParser(InputStream is) throws AuthenticationException, ParseException { init(is); diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/parser/ErrorResponseParser.java b/id.server/src/at/gv/egovernment/moa/id/auth/parser/ErrorResponseParser.java index 8edeec8ae..e3c54095d 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/parser/ErrorResponseParser.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/parser/ErrorResponseParser.java @@ -62,7 +62,7 @@ public class ErrorResponseParser { /** * Returns the information included in this error response. - * @return + * @return The error infomation String */ public String getErrorInfo() { return errorInfo_ ; diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.java b/id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.java index 0cedda28d..e59c88ddc 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.java @@ -28,7 +28,8 @@ public class InfoboxReadResponseParser { * root element. * * @param xmlResponse <InfoboxReadResponse> as String - * @throws ParseException on any parsing error + * @throws ParseException If an element cannot be parsed + * @throws AuthenticationException If any authentication error occurs */ public InfoboxReadResponseParser(String xmlResponse) throws ParseException, AuthenticationException { @@ -45,8 +46,9 @@ public class InfoboxReadResponseParser { * Parses and validates the document given as stream and extracts the * root element. * - * @param xmlResponse <InfoboxReadResponse> as InputStream - * @throws ParseException on any parsing error + * @param is <InfoboxReadResponse> as InputStream + * @throws ParseException If an element cannot be parsed + * @throws AuthenticationException If any authentication error occurs */ public InfoboxReadResponseParser(InputStream is) throws ParseException, AuthenticationException { init(is); @@ -58,7 +60,7 @@ public class InfoboxReadResponseParser { * root element. * * @param is The InfoBoxReadResponse as stream. - * @throws AuthenticationException if an authentication error occurs. + * @throws AuthenticationException If an authentication error occurs. * @throws ParseException If an error occurs on parsing the the document. */ private void init(InputStream is) throws AuthenticationException, ParseException { -- cgit v1.2.3