+ ", Long paymentKindId=" + paymentKindId + ") - start");
}
PaymentKind paymentKind = this.getPaymentKind(paymentKindId);
if (paymentKind == null) {
throw new ServiceException("No PaymentKind read for id: " + paymentKindId);
}
Date returnDate = calculatePaymentDate(soldDate, paymentKind.getValue());
if (logger.isDebugEnabled()) {
logger.debug("calculatePaymentDate(Date, Long) - end - return value=" + returnDate);