
Classes | |
| interface | Delegate |
| class | Observer |
Public Member Functions | |
| PayPalNotificationListener () | |
Static Public Member Functions | |
| static Object | delegate () |
| static Observer | observer () |
| static void | setDelegate (Object obj) |
Static Public Attributes | |
| static final String | DeniedPayPalPaymentReceivedNotification = "DeniedPayPalPaymentReceivedNotification" |
| static final String | FailedPayPalPaymentReceivedNotification = "FailedPayPalPaymentReceivedNotification" |
| static final String | InvalidPayPalPaymentReceivedNotification = "InvalidPayPalPaymentReceivedNotification" |
| static final String | PendingPayPalPaymentReceivedNotification = "PendingPayPalPaymentReceivedNotification" |
| static final String | ValidPayPalPaymentReceivedNotification = "ValidPayPalPaymentReceivedNotification" |
Static Protected Member Functions | |
| static Object | defaultDelegate () |
Static Private Attributes | |
| static Object | _defaultDelegate |
| static volatile Object | _delegate |
| static Observer | _observer |
Constructor.
| static Object defaultDelegate | ( | ) | [static, protected] |
Method to return the default delegate object. Creates a new Object as the delegate if it's not assigned.
| static Object delegate | ( | ) | [static] |
Method to return the assigned delegate object. If one is not assigned, it returns the defaultDelegate object.
| static Observer observer | ( | ) | [static] |
| static void setDelegate | ( | Object | obj | ) | [static] |
Method to assign the class's delegate object. Throws an IllegalArgumentException if it receives a null object to assign as the delegate.
| obj | Object |
Object _defaultDelegate [static, private] |
Private ivar for the default delegate object.
volatile Object _delegate [static, private] |
Private ivar for the assigned delegate Object.
final String DeniedPayPalPaymentReceivedNotification = "DeniedPayPalPaymentReceivedNotification" [static] |
Notification name when IPN returns DENIED result.
final String FailedPayPalPaymentReceivedNotification = "FailedPayPalPaymentReceivedNotification" [static] |
Notification name when IPN returns FAILED result.
final String InvalidPayPalPaymentReceivedNotification = "InvalidPayPalPaymentReceivedNotification" [static] |
Notification name when IPN returns INVALID result.
final String PendingPayPalPaymentReceivedNotification = "PendingPayPalPaymentReceivedNotification" [static] |
Notification name when IPN returns PENDING result.
final String ValidPayPalPaymentReceivedNotification = "ValidPayPalPaymentReceivedNotification" [static] |
Notification name when IPN returns VALID result.
1.5.8