
com.theagilemonkeys.meets.magento.methods.CustomerCustomerCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meets-magento-connector Show documentation
Show all versions of meets-magento-connector Show documentation
A native SDK connector designed to ease communication between java environments and Magento stores
The newest version!
package com.theagilemonkeys.meets.magento.methods;
import com.theagilemonkeys.meets.magento.SoapApiMethod;
import com.theagilemonkeys.meets.magento.models.MeetsMageCustomer;
import com.theagilemonkeys.meets.models.base.MeetsFactory;
/**
* Android Meets SDK
* Original work Copyright (c) 2014 [TheAgileMonkeys]
*
* @author Álvaro López Espinosa
*/
public class CustomerCustomerCreate extends SoapApiMethod {
public CustomerCustomerCreate() {
super(MeetsFactory.get().makeCustomer().getClass());
}
@Override
protected void parseResponse(Object response, Object model) throws Exception {
((MeetsMageCustomer) model).setId((Integer) response);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy