Interface TppOperationInfoRestApi
-
public interface TppOperationInfoRestApi
-
-
Method Summary
All Methods Instance Methods Abstract 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)
-
-
-
Field Detail
-
BASE_PATH
static final String BASE_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAllOperations
@GetMapping org.springframework.http.ResponseEntity<List<OperationInfo>> getAllOperations(@RequestParam(value="operationType",required=false) OperationType operationType)
-
addOperationInfo
@PostMapping org.springframework.http.ResponseEntity<OperationInfo> addOperationInfo(@RequestBody OperationInfo operationInfo)
-
-