diff options
author | Camil Staps | 2015-06-11 16:24:00 +0200 |
---|---|---|
committer | Camil Staps | 2015-06-11 16:29:00 +0200 |
commit | d8c0b09be3863ee9f434b26346e6e24089bcea80 (patch) | |
tree | be6ad30eb3576aa0c92d85315455e06213600b20 /Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java | |
parent | UML diagram w16b (diff) |
Wrapping up w16
Diffstat (limited to 'Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java')
-rw-r--r-- | Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java b/Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java index a752453..dfc791f 100644 --- a/Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java +++ b/Week16 Webshop/src/com/camilstaps/webshop/payment/PayPal.java @@ -29,6 +29,9 @@ package com.camilstaps.webshop.payment; */ public class PayPal implements PaymentMethod { + /** + * PayPal credentials + */ private final String email, pass; public PayPal(String email, String pass) { |