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());