diff options
author | peter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-07-31 14:56:27 +0000 |
---|---|---|
committer | peter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-07-31 14:56:27 +0000 |
commit | b573a90aa69b3d66b0a800d76398ef41f5ccb022 (patch) | |
tree | 63e1eafa75ae9cda1e4d3fa8d8b010c755115d81 /id.server/src/at/gv/egovernment/moa/id/auth/parser | |
parent | 6016b8782baa28a290b672693ff951c44a05bf22 (diff) | |
download | moa-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/parser')
3 files changed, 10 insertions, 8 deletions
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 <code><CreateXMLSignatureResponse></code> as String + * @param is <code><InfoboxReadResponse></code> 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 <code><InfoboxReadResponse></code> 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 <code><InfoboxReadResponse></code> as InputStream - * @throws ParseException on any parsing error + * @param is <code><InfoboxReadResponse></code> 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 { |