Ejemplo n.º 1
0
 private PaypalSOAPProxy(String apiUsername, String apiPassword, String apiSignature)
     throws PayPalException {
   super(apiUsername, apiPassword, apiSignature);
   caller = new CallerServices();
   caller.setAPIProfile(profile);
 }
Ejemplo n.º 2
0
 private PaypalSOAPProxy(APIProfile profile) throws PayPalException {
   super(profile);
   caller = new CallerServices();
   caller.setAPIProfile(profile);
 }