summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/parser/AuthChallengeParser.java')
-rw-r--r--src/com/isode/stroke/parser/AuthChallengeParser.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/com/isode/stroke/parser/AuthChallengeParser.java b/src/com/isode/stroke/parser/AuthChallengeParser.java
new file mode 100644
index 0000000..20238dd
--- /dev/null
+++ b/src/com/isode/stroke/parser/AuthChallengeParser.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2010 Remko Tron¨on
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+/*
+ * Copyright (c) 2010-2011, Isode Limited, London, England.
+ * All rights reserved.
+ */
+package com.isode.stroke.parser;
+
+import com.isode.stroke.elements.AuthChallenge;
+import com.isode.stroke.stringcodecs.Base64;
+
+class AuthChallengeParser extends GenericElementParser<AuthChallenge> {
+
+ public AuthChallengeParser() {
+ super(AuthChallenge.class);
+ }
+
+ @Override
+ public void handleStartElement(String unused1, String unused2, AttributeMap unused3) {
+ ++depth;
+ }
+
+ @Override
+ public void handleEndElement(String unused1, String unused2) {
+ --depth;
+ if (depth == 0) {
+ getElementGeneric().setValue(Base64.decode(text));
+ }
+ }
+
+ @Override
+ public void handleCharacterData(String text) {
+ this.text += text;
+ }
+ private int depth = 0;
+ private String text = "";
+}