Class XMLResponseParser
- java.lang.Object
-
- org.apache.solr.client.solrj.ResponseParser
-
- org.apache.solr.client.solrj.impl.XMLResponseParser
-
public class XMLResponseParser extends ResponseParser
- Since:
- solr 1.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
XMLResponseParser.KnownType
-
Field Summary
Fields Modifier and Type Field Description static String
XML_CONTENT_TYPE
-
Constructor Summary
Constructors Constructor Description XMLResponseParser()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
consumeRawContent(XMLStreamReader parser)
This is a stub method for handling/validating "raw" xml field values in the context of tests.protected static String
convertRawContent(String raw, Function<XMLStreamReader,String> consumeRawContent)
Convenience method that converts raw String input (should be valid xml when wrapped in a root element) and converts it to a format compatible with howXMLResponseParser
parses from raw xml fields.String
getContentType()
A well behaved ResponseParser will return its content-type.String
getWriterType()
NamedList<Object>
processResponse(InputStream in, String encoding)
NamedList<Object>
processResponse(Reader in)
protected List<Object>
readArray(XMLStreamReader parser)
protected SolrDocument
readDocument(XMLStreamReader parser)
protected SolrDocumentList
readDocuments(XMLStreamReader parser)
protected NamedList<Object>
readNamedList(XMLStreamReader parser)
-
Methods inherited from class org.apache.solr.client.solrj.ResponseParser
getContentTypes, getVersion
-
-
-
-
Field Detail
-
XML_CONTENT_TYPE
public static final String XML_CONTENT_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getWriterType
public String getWriterType()
- Specified by:
getWriterType
in classResponseParser
-
getContentType
public String getContentType()
Description copied from class:ResponseParser
A well behaved ResponseParser will return its content-type.- Overrides:
getContentType
in classResponseParser
- Returns:
- the content-type this parser expects to parse
-
processResponse
public NamedList<Object> processResponse(Reader in)
- Specified by:
processResponse
in classResponseParser
-
processResponse
public NamedList<Object> processResponse(InputStream in, String encoding)
- Specified by:
processResponse
in classResponseParser
-
readNamedList
protected NamedList<Object> readNamedList(XMLStreamReader parser) throws XMLStreamException
- Throws:
XMLStreamException
-
readArray
protected List<Object> readArray(XMLStreamReader parser) throws XMLStreamException
- Throws:
XMLStreamException
-
readDocuments
protected SolrDocumentList readDocuments(XMLStreamReader parser) throws XMLStreamException
- Throws:
XMLStreamException
-
readDocument
protected SolrDocument readDocument(XMLStreamReader parser) throws XMLStreamException
- Throws:
XMLStreamException
-
consumeRawContent
protected String consumeRawContent(XMLStreamReader parser) throws XMLStreamException
This is a stub method for handling/validating "raw" xml field values in the context of tests. Before this stub method was present, "raw" content would have still thrown an exception, albeit a different, more inscrutable exception.- Throws:
XMLStreamException
-
convertRawContent
protected static String convertRawContent(String raw, Function<XMLStreamReader,String> consumeRawContent) throws XMLStreamException
Convenience method that converts raw String input (should be valid xml when wrapped in a root element) and converts it to a format compatible with howXMLResponseParser
parses from raw xml fields. This method is intended for test validation.The main reason this method exists is to provide a consistent way of configuring and creating and invoking the sub-parser
- Throws:
XMLStreamException
-
-