...
Function Points (transactions) | Quality and Sizing |
---|---|
CAST AIP release | Supported |
---|---|
8.3.x |
Supported DBMS servers
This extension is compatible with the following DBMS servers:
CAST AIP release | CSS | Oracle | Microsoft |
---|---|---|---|
All supported releases |
Prerequisites
Installation of any compatible release of CAST AIP (see table above) |
...
...
Code Block | ||
---|---|---|
| ||
import java.util.List; @FeignClient( name = "${client.name}", path= "${client.path}", configuration = FeignConfiguration.class ) public interface ClientConfiguration { @RequestMapping(method = RequestMethod.POST, value = "/services/clients") List<SupplierTransitionDTO> getData(@RequestBody List<String> codes) throws FeignException; } |
Code Block | ||
---|---|---|
| ||
@FeignClient(name = "Client", url = "${build.api.url}", path = "/api/v1") public interface ClientConfiguration { @GetMapping("/sites/{site-id}/clients") ConsentResponse getConfiguration( @PathVariable("site-id") String siteId, @RequestParam("types") List<ConfigType> types); } |
Retrofit2.http
...