From fdf893d1f75aca250c67ea9c31388bf79c8b14c3 Mon Sep 17 00:00:00 2001 From: Santeri Korri Date: Fri, 22 Nov 2024 12:52:08 +0200 Subject: [PATCH] =?UTF-8?q?OK-611=20Poistettu=20k=C3=A4ytt=C3=A4m=C3=A4t?= =?UTF-8?q?=C3=B6n=20metodi=20ValintaperusteetAsyncResource-luokasta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ValintaperusteetAsyncResource.java | 4 ---- .../impl/ValintaperusteetAsyncResourceImpl.java | 11 ----------- .../mocks/MockValintaperusteetAsyncResource.java | 6 ------ 3 files changed, 21 deletions(-) diff --git a/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/ValintaperusteetAsyncResource.java b/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/ValintaperusteetAsyncResource.java index c8ced1d4b..9402a5931 100644 --- a/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/ValintaperusteetAsyncResource.java +++ b/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/ValintaperusteetAsyncResource.java @@ -3,7 +3,6 @@ import fi.vm.sade.service.valintaperusteet.dto.HakukohdeImportDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintaperusteDTO; -import fi.vm.sade.service.valintaperusteet.dto.HakukohdeViiteDTO; import fi.vm.sade.service.valintaperusteet.dto.ValinnanVaiheJonoillaDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintaperusteDTO; @@ -25,9 +24,6 @@ Observable>> haeValintatapajonotSijoittelul CompletableFuture> haeHakijaryhmat(String hakukohdeOid); - // @GET /valintaperusteet-service/resources/hakukohde/haku/{} - Observable> haunHakukohteet(String hakuOid); - CompletableFuture> haeValintaperusteet( String hakukohdeOid, Integer valinnanVaiheJarjestysluku); diff --git a/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/impl/ValintaperusteetAsyncResourceImpl.java b/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/impl/ValintaperusteetAsyncResourceImpl.java index 894c93fc3..d44b590b3 100644 --- a/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/impl/ValintaperusteetAsyncResourceImpl.java +++ b/src/main/java/fi/vm/sade/valinta/kooste/external/resource/valintaperusteet/impl/ValintaperusteetAsyncResourceImpl.java @@ -5,7 +5,6 @@ import fi.vm.sade.service.valintaperusteet.dto.HakukohdeImportDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintaperusteDTO; -import fi.vm.sade.service.valintaperusteet.dto.HakukohdeViiteDTO; import fi.vm.sade.service.valintaperusteet.dto.ValinnanVaiheJonoillaDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintaperusteDTO; @@ -82,16 +81,6 @@ public CompletableFuture> haeValintaperusteet( url, new TypeToken>() {}, Collections.emptyMap(), 60 * 60 * 1000); } - public Observable> haunHakukohteet(String hakuOid) { - return Observable.fromFuture( - this.httpClient.get( - this.urlConfiguration.url( - "valintaperusteet-service.valintalaskentakoostepalvelu.hakukohde.haku", hakuOid), - new TypeToken>() {}, - Collections.emptyMap(), - 10 * 60 * 1000)); - } - @Override public Observable tuoHakukohde(HakukohdeImportDTO hakukohde) { return Observable.fromFuture( diff --git a/src/test/java/fi/vm/sade/valinta/kooste/mocks/MockValintaperusteetAsyncResource.java b/src/test/java/fi/vm/sade/valinta/kooste/mocks/MockValintaperusteetAsyncResource.java index 1277e9398..f4c2c904b 100644 --- a/src/test/java/fi/vm/sade/valinta/kooste/mocks/MockValintaperusteetAsyncResource.java +++ b/src/test/java/fi/vm/sade/valinta/kooste/mocks/MockValintaperusteetAsyncResource.java @@ -3,7 +3,6 @@ import fi.vm.sade.service.valintaperusteet.dto.HakukohdeImportDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.HakukohdeJaValintaperusteDTO; -import fi.vm.sade.service.valintaperusteet.dto.HakukohdeViiteDTO; import fi.vm.sade.service.valintaperusteet.dto.ValinnanVaiheJonoillaDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintakoeDTO; import fi.vm.sade.service.valintaperusteet.dto.ValintaperusteDTO; @@ -106,11 +105,6 @@ public Observable> haeHakukohteetValinnanvaiheelle(String oid) { return Observable.just(hakukohteetValinnanvaiheelleResultReference.get()); } - @Override - public Observable> haunHakukohteet(String hakuOid) { - throw new UnsupportedOperationException(); - } - @Override public CompletableFuture> findAvaimet(String hakukohdeOid) { return CompletableFuture.completedFuture(valintaperusteetResultReference.get());