Skip to content

Commit

Permalink
Oppdater bidrag-felles
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 committed Oct 2, 2024
1 parent aea1a56 commit e0b1f6f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package no.nav.bidrag.behandling.consumer

import no.nav.bidrag.behandling.config.CacheConfig.Companion.BBM_BEREGNING_CACHE
import no.nav.bidrag.commons.cache.BrukerCacheable
import no.nav.bidrag.commons.web.client.AbstractRestClient
import no.nav.bidrag.transport.behandling.beregning.felles.BidragBeregningRequestDto
import no.nav.bidrag.transport.behandling.beregning.felles.BidragBeregningResponsDto
Expand All @@ -22,12 +20,12 @@ class BidragBBMConsumer(
private val bidragBBMUri
get() = UriComponentsBuilder.fromUri(bidragBBMurl).pathSegment("api", "beregning")

// @BrukerCacheable(BBM_BEREGNING_CACHE)
@Retryable(
value = [Exception::class],
maxAttempts = 3,
backoff = Backoff(delay = 200, maxDelay = 1000, multiplier = 2.0),
)
@BrukerCacheable(BBM_BEREGNING_CACHE)
fun hentBeregning(request: BidragBeregningRequestDto): BidragBeregningResponsDto =
postForNonNullEntity(
bidragBBMUri.build().toUri(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package no.nav.bidrag.behandling.consumer

import no.nav.bidrag.behandling.config.CacheConfig.Companion.STØNAD_LØPENDE_BIDRAG_CACHE
import no.nav.bidrag.commons.cache.BrukerCacheable
import no.nav.bidrag.commons.web.client.AbstractRestClient
import no.nav.bidrag.transport.behandling.stonad.request.LøpendeBidragssakerRequest
import no.nav.bidrag.transport.behandling.stonad.response.LøpendeBidragssakerResponse
Expand All @@ -22,12 +20,12 @@ class BidragStønadConsumer(
private val bidragsStønadUri
get() = UriComponentsBuilder.fromUri(bidragStønadUrl)

// @BrukerCacheable(STØNAD_LØPENDE_BIDRAG_CACHE)
@Retryable(
value = [Exception::class],
maxAttempts = 3,
backoff = Backoff(delay = 200, maxDelay = 1000, multiplier = 2.0),
)
@BrukerCacheable(STØNAD_LØPENDE_BIDRAG_CACHE)
fun hentLøpendeBidrag(request: LøpendeBidragssakerRequest): LøpendeBidragssakerResponse =
postForNonNullEntity(
bidragsStønadUri.pathSegment("hent-lopende-bidragssaker-for-skyldner").build().toUri(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package no.nav.bidrag.behandling.consumer

import no.nav.bidrag.behandling.config.CacheConfig.Companion.VEDTAK_FOR_STØNAD_CACHE
import no.nav.bidrag.commons.cache.BrukerCacheable
import no.nav.bidrag.commons.web.client.AbstractRestClient
import no.nav.bidrag.transport.behandling.vedtak.request.HentVedtakForStønadRequest
import no.nav.bidrag.transport.behandling.vedtak.request.OpprettVedtakRequestDto
Expand Down Expand Up @@ -36,12 +34,12 @@ class BidragVedtakConsumer(
bidragVedtakUri.pathSegment(vedtakId.toString()).build().toUri(),
)

// @BrukerCacheable(VEDTAK_FOR_STØNAD_CACHE)
@Retryable(
value = [Exception::class],
maxAttempts = 3,
backoff = Backoff(delay = 200, maxDelay = 1000, multiplier = 2.0),
)
@BrukerCacheable(VEDTAK_FOR_STØNAD_CACHE)
fun hentVedtakForStønad(request: HentVedtakForStønadRequest): HentVedtakForStønadResponse =
postForNonNullEntity(
bidragVedtakUri.pathSegment("hent-vedtak").build().toUri(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class BehandlingDtoMappingTest : TestContainerRunner() {
beløpDirekteBetaltAvBp shouldBe BigDecimal(1000)
totalBeløpBetaltAvBp shouldBe BigDecimal(1000)
totalGodkjentBeløp shouldBe BigDecimal(2100)
totalGodkjentBeløpBp shouldBe null
totalGodkjentBeløpBp shouldBe BigDecimal.ZERO
}
assertSoftly(utgiftDto) {
avslag shouldBe null
Expand Down

0 comments on commit e0b1f6f

Please sign in to comment.