Hey Marius,

Ok, so i've been putting this together, and have the following:

case class PaypalEventAction(status: PaypalTransactionStatus,
functions: List[() => PaypalActionHandler])

So, when I then create a subclass for PaypalActionHandler which I
create a new instance of like:

case class SecondPendingHandler extends PaypalActionHandler {
  println("FFDGDFGDF")
}

PaypalEventAction(PendingPayment, List(
  SecondPendingHandler()
))

Then I get this error:

 found   : this.SecondPendingHandler
 required: () => this.PaypalActionHandler
    PaypalEventAction(PendingPayment, List( SecondPendingHandler() ) )

What i want to do is have my PaypalIPN class have a list of
PaypalEventAction and then operate on that internal list so that I can
filter the list depending on the resultant action from paypal.

Any pointers on why this is bombing would be a great help

Cheers

Tim


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to