Toggle navigation
Home
java.util.List<org.killbill.billing.invoice.dao.InvoicePaymentModelDao> to org.killbill.billing.invoice.dao.InvoicePaymentModelDao
No. of Instances - 3
No. of Commits - 1
No. of Projects - {'killbill'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Rename Method invocation
getInvoicePaymentsByPaymentCookieId
to
getPaymentForCookieId
Rename Variable
getInvoicePaymentsByCookieId
to
getInvoicePaymentByCookieId
getInvoicePaymentsByCookieId
to
getInvoicePaymentByCookieId
Cascading Type Change (Different)
EntitySqlDaoTransactionWrapper<List<InvoicePaymentModelDao>>
to
EntitySqlDaoTransactionWrapper<InvoicePaymentModelDao>
Update Anonymous class
{ @Override public List<InvoicePaymentModelDao> inTransaction( final EntitySqlDaoWrapperFactory entitySqlDaoWrapperFactory) throws Exception { return entitySqlDaoWrapperFactory.become(InvoicePaymentSqlDao.class).getInvoicePaymentsByPaymentCookieId(cookieId,context); } }
to
{ @Override public InvoicePaymentModelDao inTransaction( final EntitySqlDaoWrapperFactory entitySqlDaoWrapperFactory) throws Exception { return entitySqlDaoWrapperFactory.become(InvoicePaymentSqlDao.class).getPaymentForCookieId(cookieId,context); } }