All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexsandrospecht.ws.ReceitaWS Maven / Gradle / Ivy

package com.github.alexsandrospecht.ws;

import feign.Param;
import feign.RequestLine;
import com.github.alexsandrospecht.wrapper.RetornoWrapper;

/**
 * Created by alexsandrospecht on 22/02/17.
 */
public interface ReceitaWS {

    @RequestLine("GET /v1/cnpj/{cnpj}")
    String consulta(@Param("cnpj") String cnpj);

    @RequestLine("GET /v1/cnpj/{cnpj}")
    RetornoWrapper consultaWrapper(@Param("cnpj") String cnpj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy