com.google.api.client.xml.atom
Class AtomParser
java.lang.Object
com.google.api.client.http.xml.XmlHttpParser
com.google.api.client.xml.atom.AtomParser
- All Implemented Interfaces:
- HttpParser
Deprecated. (scheduled to be removed in 1.5) Use
AtomParser
@Deprecated
public final class AtomParser
- extends XmlHttpParser
Atom XML HTTP parser into an data class of key/value pairs.
It overrides the XmlHttpParser.contentType to Atom.CONTENT_TYPE.
Sample usage:
static void setParser(HttpTransport transport) {
AtomParser parser = new AtomParser();
parser.namespaceDictionary = NAMESPACE_DICTIONARY;
transport.addParser(parser);
}
- Since:
- 1.0
- Author:
- Yaniv Inbar
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AtomParser
public AtomParser()
- Deprecated.
Copyright © 2010-2011 Google. All Rights Reserved.