Class AspspProfileUpdateController
- java.lang.Object
-
- de.adorsys.psd2.aspsp.profile.web.controller.AspspProfileUpdateController
-
@Profile("debug_mode") @RestController @RequestMapping(path="/api/v1/aspsp-profile/for-debug") public class AspspProfileUpdateController extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_SERVICE_INSTANCE_ID
-
Constructor Summary
Constructors Constructor Description AspspProfileUpdateController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<Void>enableMultitenancy(Boolean multitenancyEnabled)org.springframework.http.ResponseEntity<Void>updateAspspSettings(de.adorsys.psd2.aspsp.profile.domain.AspspSettings aspspSettings, String instanceId)org.springframework.http.ResponseEntity<Void>updateScaApproach(List<String> newScaApproaches, String instanceId)
-
-
-
Field Detail
-
DEFAULT_SERVICE_INSTANCE_ID
public static final String DEFAULT_SERVICE_INSTANCE_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
updateScaApproach
@PutMapping(path="/sca-approaches") public org.springframework.http.ResponseEntity<Void> updateScaApproach(@RequestBody List<String> newScaApproaches, @RequestHeader(value="Instance-ID",required=false,defaultValue="") String instanceId)
-
updateAspspSettings
@PutMapping(path="/aspsp-settings") public org.springframework.http.ResponseEntity<Void> updateAspspSettings(@RequestBody de.adorsys.psd2.aspsp.profile.domain.AspspSettings aspspSettings, @RequestHeader(value="Instance-ID",required=false,defaultValue="") String instanceId)
-
-