Commit f762adf2 authored by Łukasz Nowak's avatar Łukasz Nowak

Explain a bit more about navigate.

parent 02366d06
...@@ -44,7 +44,11 @@ class IPaymentService(Interface): ...@@ -44,7 +44,11 @@ class IPaymentService(Interface):
""" """
def navigate(self, REQUEST=None, **kw): def navigate(self, REQUEST=None, **kw):
"""Redirect User to the payment page. """Redirects User to the payment page.
Implementation shall prepare service's expected HTTP query and return
correct HTTP response to browser which will lead to external payment page
with all required parameters.
""" """
def reportPaymentStatus(self, REQUEST=None): def reportPaymentStatus(self, REQUEST=None):
...@@ -60,4 +64,4 @@ class IPaymentService(Interface): ...@@ -60,4 +64,4 @@ class IPaymentService(Interface):
def notifyCancel(self, REQUEST=None, **kw): def notifyCancel(self, REQUEST=None, **kw):
"""Fallback method when transaction is cancelled """Fallback method when transaction is cancelled
""" """
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment