Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 365 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 365 Bytes

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");