br.com.newgo:plug-boleto-java

A Java client for Tecnospeed's boleto API


License
BSD-1-Clause

Documentation

Tecnospeed Client

Disclaimer: This is a non official project. It is in no way associated to Tecnospeed.

TODO

[ ] Implement tests

Usage example

TecnoSpeed tecnoSpeed = TecnoSpeed.getInstance("asdasd", "asdad", Environment.SANDBOX);
TecnoSpeed tecnoSpeed = TecnoSpeed.getInstance();
Cedente cedente = Cedente.builder()
    ...
    .build();
Boleto boleto = Boleto.builder()
    ...
    .build();

tecnoSpeed.boletos().emitir(boleto);

Paged paged = tecnoSpeec.assignors().findAll();
Paged next = paged.next();