Interface ScalaXmlSupport
-
- All Known Implementing Classes:
ScalaXmlSupport$
public interface ScalaXmlSupport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.xml.parsers.SAXParser
createSAXParser()
Provides a SAXParser for the NodeSeqUnmarshaller to use.Marshaller<scala.xml.NodeSeq,RequestEntity>
defaultNodeSeqMarshaller()
Unmarshaller<HttpEntity,scala.xml.NodeSeq>
defaultNodeSeqUnmarshaller()
Marshaller<scala.xml.NodeSeq,RequestEntity>
nodeSeqMarshaller(MediaType.NonBinary mediaType)
Unmarshaller<HttpEntity,scala.xml.NodeSeq>
nodeSeqUnmarshaller(scala.collection.immutable.Seq<ContentTypeRange> ranges)
-
-
-
Method Detail
-
defaultNodeSeqMarshaller
Marshaller<scala.xml.NodeSeq,RequestEntity> defaultNodeSeqMarshaller()
-
nodeSeqMarshaller
Marshaller<scala.xml.NodeSeq,RequestEntity> nodeSeqMarshaller(MediaType.NonBinary mediaType)
-
defaultNodeSeqUnmarshaller
Unmarshaller<HttpEntity,scala.xml.NodeSeq> defaultNodeSeqUnmarshaller()
-
nodeSeqUnmarshaller
Unmarshaller<HttpEntity,scala.xml.NodeSeq> nodeSeqUnmarshaller(scala.collection.immutable.Seq<ContentTypeRange> ranges)
-
createSAXParser
javax.xml.parsers.SAXParser createSAXParser()
Provides a SAXParser for the NodeSeqUnmarshaller to use. Override to provide a custom SAXParser implementation. Will be called once for for every request to be unmarshalled. The default implementation callsScalaXmlSupport.createSaferSAXParser
.- Returns:
- (undocumented)
-
-