I have the following method:
def generateTokenForAccount(account: Account): Account = {
account.setAccountToken(UUID.randomUUID().toString())
return account
}
I am passing to this method a subclass of Account i.e. ChildminderAccount and I am trying to cast the result in scala to no avail. What I am getting wrong?
@Transactional
def registerChildminderAccount(childminderAccount: ChildminderAccount): Boolean = {
childminderAccountDAO.save((ChildminderAccount) generateTokenForAccount(childminderAccount))//problem here!!
if (mailerService.requestChildminderConfirmation(childminderAccount)) {
return true
} else {
return false
}
}
I get the following error: value generateTokenForAccount is not a member of object com.bignibou.domain.ChildminderAccount as if I was invoking the generateTokenForAccount on the ChildminderAccount class.
Can anyone please help?