Back to project page meets-android.
The source code is released under:
MIT License
If you think the Android project meets-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.theagilemonkeys.meets.magento.methods; // w w w .ja va 2s . co m import com.theagilemonkeys.meets.magento.SoapApiMethod; import com.theagilemonkeys.meets.magento.models.MageMeetsAddress; /** * Android Meets SDK * Original work Copyright (c) 2014 [TheAgileMonkeys] * * @author ??lvaro Lpez Espinosa */ public class CustomerAddressCreate extends SoapApiMethod { public CustomerAddressCreate() { super(MageMeetsAddress.class); } @Override protected void parseResponse(Object response, Object model) throws Exception { ((MageMeetsAddress) model).setId((Integer) response); } }