@RestController @RequestMapping(path="api/v1/ais/consent") public class AisConsentController extends Object
| Constructor and Description |
|---|
AisConsentController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<CreateAisConsentResponse> |
createConsent(CreateAisConsentRequest request) |
org.springframework.http.ResponseEntity<CreateAisConsentAuthorizationResponse> |
createConsentAuthorization(String consentId,
AisConsentAuthorizationRequest consentAuthorization) |
org.springframework.http.ResponseEntity<AisConsentAuthorizationResponse> |
getConsentAuthorization(String consentId,
String authorizationId) |
org.springframework.http.ResponseEntity<AisAccountConsent> |
getConsentById(String consentId) |
org.springframework.http.ResponseEntity<AisConsentStatusResponse> |
getConsentStatusById(String consentId) |
org.springframework.http.ResponseEntity<Void> |
saveConsentActionLog(ConsentActionRequest request) |
org.springframework.http.ResponseEntity<CreateAisConsentResponse> |
updateAccountAccess(String consentId,
AisAccountAccessInfo request) |
org.springframework.http.ResponseEntity<CreateAisConsentResponse> |
updateAspspBlob(String consentId,
UpdateAisConsentAspspDataRequest request) |
org.springframework.http.ResponseEntity<Void> |
updateConsentAuthorization(String consentId,
String authorizationId,
AisConsentAuthorizationRequest consentAuthorization) |
org.springframework.http.ResponseEntity<Void> |
updateConsentStatus(String consentId,
String status) |
@PostMapping(path="/") public org.springframework.http.ResponseEntity<CreateAisConsentResponse> createConsent(@RequestBody CreateAisConsentRequest request)
@PostMapping(path="/action") public org.springframework.http.ResponseEntity<Void> saveConsentActionLog(@RequestBody ConsentActionRequest request)
@GetMapping(path="/{consent-id}")
public org.springframework.http.ResponseEntity<AisAccountConsent> getConsentById(@PathVariable(value="consent-id")
String consentId)
@PutMapping(path="/{consent-id}/access")
public org.springframework.http.ResponseEntity<CreateAisConsentResponse> updateAccountAccess(@PathVariable(value="consent-id")
String consentId,
@RequestBody
AisAccountAccessInfo request)
@PutMapping(path="/{consent-id}/blob")
public org.springframework.http.ResponseEntity<CreateAisConsentResponse> updateAspspBlob(@PathVariable(value="consent-id")
String consentId,
@RequestBody
UpdateAisConsentAspspDataRequest request)
@GetMapping(path="/{consent-id}/status")
public org.springframework.http.ResponseEntity<AisConsentStatusResponse> getConsentStatusById(@PathVariable(value="consent-id")
String consentId)
@PutMapping(path="/{consent-id}/status/{status}")
public org.springframework.http.ResponseEntity<Void> updateConsentStatus(@PathVariable(value="consent-id")
String consentId,
@PathVariable(value="status")
String status)
@PostMapping(path="/{consent-id}/authorizations")
public org.springframework.http.ResponseEntity<CreateAisConsentAuthorizationResponse> createConsentAuthorization(@PathVariable(value="consent-id")
String consentId,
@RequestBody
AisConsentAuthorizationRequest consentAuthorization)
@PutMapping(path="/{consent-id}/authorizations/{authorization-id}")
public org.springframework.http.ResponseEntity<Void> updateConsentAuthorization(@PathVariable(value="consent-id")
String consentId,
@PathVariable(value="authorization-id")
String authorizationId,
@RequestBody
AisConsentAuthorizationRequest consentAuthorization)
@GetMapping(path="/{consent-id}/authorizations/{authorization-id}")
public org.springframework.http.ResponseEntity<AisConsentAuthorizationResponse> getConsentAuthorization(@PathVariable(value="consent-id")
String consentId,
@PathVariable(value="authorization-id")
String authorizationId)
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.