Skip to content

Latest commit

 

History

History

sax

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Sax Decoder

This module adds support for decoding xml via SAX.

Add this to your object graph like so:

api = Feign.builder()
           .decoder(SAXDecoder.builder()
                              .registerContentHandler(UserIdHandler.class)
                              .build())
           .target(Api.class, "https://apihost");