Class AspspProfileController
- java.lang.Object
-
- de.adorsys.psd2.aspsp.profile.web.controller.AspspProfileController
-
@RestController @RequestMapping(path="/api/v1/aspsp-profile") public class AspspProfileController extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_SERVICE_INSTANCE_ID
-
Constructor Summary
Constructors Constructor Description AspspProfileController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<de.adorsys.psd2.aspsp.profile.domain.AspspSettings>getAspspSettings(String instanceId)org.springframework.http.ResponseEntity<List<de.adorsys.psd2.xs2a.core.profile.ScaApproach>>getScaApproaches(String instanceId)org.springframework.http.ResponseEntity<Boolean>isMultitenancyEnabled()
-
-
-
Field Detail
-
DEFAULT_SERVICE_INSTANCE_ID
public static final String DEFAULT_SERVICE_INSTANCE_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAspspSettings
@GetMapping public org.springframework.http.ResponseEntity<de.adorsys.psd2.aspsp.profile.domain.AspspSettings> getAspspSettings(@RequestHeader(value="Instance-ID",required=false,defaultValue="") String instanceId)
-
getScaApproaches
@GetMapping(path="/sca-approaches") public org.springframework.http.ResponseEntity<List<de.adorsys.psd2.xs2a.core.profile.ScaApproach>> getScaApproaches(@RequestHeader(value="Instance-ID",required=false,defaultValue="") String instanceId)
-
isMultitenancyEnabled
@GetMapping(path="/multitenancy/enabled") public org.springframework.http.ResponseEntity<Boolean> isMultitenancyEnabled()
-
-