From e26d747b37ff0fbfd4f9e2481e0311c5262e6056 Mon Sep 17 00:00:00 2001 From: Everett Sochowski Date: Thu, 5 Mar 2015 12:22:51 +0100 Subject: [PATCH] Add comment --- src/main/scala/code/bankconnectors/Connector.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/scala/code/bankconnectors/Connector.scala b/src/main/scala/code/bankconnectors/Connector.scala index 2782d0001..b0b936f3f 100644 --- a/src/main/scala/code/bankconnectors/Connector.scala +++ b/src/main/scala/code/bankconnectors/Connector.scala @@ -36,6 +36,9 @@ case class OBPOrdering(field: Option[String], order: OBPOrder) extends OBPQueryP trait Connector { + //We have the Connector define its BankAccount implementation here so that it can + //have access to the implementation details (e.g. the ability to set the balance) in + //the implementation of makePaymentImpl type AccountType <: BankAccount //gets a particular bank handled by this connector