
com.theagilemonkeys.meets.magento.MageApiMethodCollectionResponseClasses 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;
import com.theagilemonkeys.meets.apimethod.ApiMethodCollectionResponseClasses;
import com.theagilemonkeys.meets.magento.models.*;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Android Meets SDK
* Original work Copyright (c) 2014 [TheAgileMonkeys]
*
* @author Álvaro López Espinosa
*/
public class MageApiMethodCollectionResponseClasses implements ApiMethodCollectionResponseClasses{
@Override
public Class extends Map> productsMap() {
return ProductsMap.class;
}
@Override
public Class extends List> productsList() {
return ProductsList.class;
}
@Override
public Class extends List> categoriesList() {
return Categories.class;
}
@Override
public Class extends List> customersList() {
return Customers.class;
}
@Override
public Class extends List> shippingMethodsList() {
return ShippingMethods.class;
}
@Override
public Class extends List> paymentMethodsList() {
return PaymentMethods.class;
}
@Override
public Class extends List> cartItemsList() {
return CartItems.class;
}
@Override
public Class extends List> stockInfosList() {
return StockInfos.class;
}
@Override
public Class extends List> addressesList() {
return Addresses.class;
}
public static class ProductsMap extends LinkedHashMap {}
public static class ProductsList extends ArrayList {}
public static class Categories extends ArrayList {}
public static class Customers extends ArrayList {}
public static class ShippingMethods extends ArrayList {}
public static class PaymentMethods extends ArrayList {}
public static class CartItems extends ArrayList {}
public static class StockInfos extends ArrayList {}
public static class Addresses extends ArrayList {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy