Interface ContestAPI

All Known Implementing Classes:
ContestsWebClientImpl

public interface ContestAPI
  • Field Details

  • Method Details

    • getContests

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestListDTO>> getContests(Integer offset, Integer limit)
    • createContest

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> createContest(ContestDTO contest)
    • updateContest

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> updateContest(int id, ContestDTO contest)
    • containsContest

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> containsContest(int id)
    • getContest

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> getContest(int id)
    • deleteContest

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> deleteContest(int id)
    • deleteAllContests

      reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> deleteAllContests()