aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.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/parser/InfoboxReadResponseParser.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/parser/InfoboxReadResponseParser.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/parser/InfoboxReadResponseParser.java10
1 files changed, 6 insertions, 4 deletions
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>&lt;InfoboxReadResponse&gt;</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>&lt;InfoboxReadResponse&gt;</code> as InputStream
- * @throws ParseException on any parsing error
+ * @param is <code>&lt;InfoboxReadResponse&gt;</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 {