Package de.adorsys.xs2a.adapter.rest.api
Interface AspspSearchApi
-
public interface AspspSearchApi
-
-
Field Summary
Fields Modifier and Type Field Description static StringV1_APSPSstatic StringV1_APSPS_BY_ID
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<List<AspspTO>>getAspsps(String name, String bic, String bankCode, String iban, String after, int size)org.springframework.http.ResponseEntity<AspspTO>getById(String id)
-
-
-
Field Detail
-
V1_APSPS
static final String V1_APSPS
- See Also:
- Constant Field Values
-
V1_APSPS_BY_ID
static final String V1_APSPS_BY_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAspsps
@RequestMapping(value="/v1/aspsps", method=GET) org.springframework.http.ResponseEntity<List<AspspTO>> getAspsps(@RequestParam(value="name",required=false) String name, @RequestParam(value="bic",required=false) String bic, @RequestParam(value="bankCode",required=false) String bankCode, @RequestParam(value="iban",required=false) String iban, @RequestParam(value="after",required=false) String after, @RequestParam(value="size",required=false,defaultValue="10") int size)
-
-