Interface TppRecoveryPointRestApi


  • public interface TppRecoveryPointRestApi
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String BASE_PATH  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.springframework.http.ResponseEntity<Void> createPoint​(de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO recoveryPoint)  
      org.springframework.http.ResponseEntity<Void> deletePoint​(Long id)  
      org.springframework.http.ResponseEntity<de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO> point​(Long id)  
      org.springframework.http.ResponseEntity<List<de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO>> points()  
    • Method Detail

      • point

        @GetMapping("/point/{id}")
        org.springframework.http.ResponseEntity<de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO> point​(@PathVariable("id")
                                                                                                                        Long id)
      • points

        @GetMapping("/points")
        org.springframework.http.ResponseEntity<List<de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO>> points()
      • createPoint

        @PostMapping("/point")
        org.springframework.http.ResponseEntity<Void> createPoint​(@RequestBody
                                                                  de.adorsys.ledgers.middleware.api.domain.general.RecoveryPointTO recoveryPoint)
      • deletePoint

        @DeleteMapping("/point/{id}")
        org.springframework.http.ResponseEntity<Void> deletePoint​(@PathVariable("id")
                                                                  Long id)