Class TppOperationInfoController
- java.lang.Object
-
- de.adorsys.psd2.sandbox.tpp.rest.server.controller.TppOperationInfoController
-
- All Implemented Interfaces:
TppOperationInfoRestApi
@RestController @RequestMapping("/tpp/operation") public class TppOperationInfoController extends Object implements TppOperationInfoRestApi
-
-
Field Summary
-
Fields inherited from interface de.adorsys.psd2.sandbox.tpp.rest.api.resource.TppOperationInfoRestApi
BASE_PATH
-
-
Constructor Summary
Constructors Constructor Description TppOperationInfoController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<OperationInfo>addOperationInfo(OperationInfo operationInfo)org.springframework.http.ResponseEntity<Void>deleteOperationInfo(Long operationInfoId)org.springframework.http.ResponseEntity<List<OperationInfo>>getAllOperations(OperationType operationType)
-
-
-
Method Detail
-
getAllOperations
public org.springframework.http.ResponseEntity<List<OperationInfo>> getAllOperations(OperationType operationType)
- Specified by:
getAllOperationsin interfaceTppOperationInfoRestApi
-
addOperationInfo
public org.springframework.http.ResponseEntity<OperationInfo> addOperationInfo(OperationInfo operationInfo)
- Specified by:
addOperationInfoin interfaceTppOperationInfoRestApi
-
deleteOperationInfo
public org.springframework.http.ResponseEntity<Void> deleteOperationInfo(Long operationInfoId)
- Specified by:
deleteOperationInfoin interfaceTppOperationInfoRestApi
-
-