Toggle navigation
Home
org.killbill.billing.account.api.Account to org.killbill.billing.account.api.ImmutableAccountData
No. of Instances - 69
No. of Commits - 1
No. of Projects - {'killbill'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
accountInternalApi.getAccountById(bundle.getAccountId(),internalTenantContext)
to
accountInternalApi.getImmutableAccountDataById(bundle.getAccountId(),internalTenantContext)
testOverdueHelper.createAccount(clock.getUTCToday().minusDays(31))
to
testOverdueHelper.createImmutableAccountData(clock.getUTCToday().minusDays(31))
accountUserApi.getAccountById(accountId,internalCallContextFactory.createInternalTenantContext(accountId,context))
to
accountUserApi.getImmutableAccountDataById(accountId,internalCallContextFactory.createInternalTenantContext(accountId,context))
accountUserApi.getAccountById(accountId,internalContext)
to
accountUserApi.getImmutableAccountDataById(accountId,internalContext)
testOverdueHelper.createAccount(clock.getUTCToday().minusDays(31))
to
testOverdueHelper.createImmutableAccountData(clock.getUTCToday().minusDays(31))
testOverdueHelper.createAccount(clock.getUTCToday().minusDays(41))
to
testOverdueHelper.createImmutableAccountData(clock.getUTCToday().minusDays(41))
testOverdueHelper.createAccount(clock.getUTCToday().minusDays(51))
to
testOverdueHelper.createImmutableAccountData(clock.getUTCToday().minusDays(51))
accountInternalApi.getAccountByRecordId(internalTenantContext.getAccountRecordId(),internalTenantContext)
to
accountInternalApi.getImmutableAccountDataByRecordId(internalTenantContext.getAccountRecordId(),internalTenantContext)
Other
calculateBcdFromSubscription(subscription,plan,account,catalog,context)
to
accountBillCycleDayLocal != 0 ? accountBillCycleDayLocal : calculateBcdFromSubscription(subscription,plan,account,catalog,context)