All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.theagilemonkeys.meets.magento.models.MeetsMageProductConfiguration Maven / Gradle / Ivy

Go to download

A native SDK connector designed to ease communication between java environments and Magento stores

The newest version!
package com.theagilemonkeys.meets.magento.models;

import com.theagilemonkeys.meets.models.MeetsProduct;
import com.theagilemonkeys.meets.magento.utils.soap.SoapSerializableObject;

import java.util.Map;

/**
 * Android Meets SDK
 * Original work Copyright (c) 2014 [TheAgileMonkeys]
 *
 * @author Álvaro López Espinosa
 */

public class MeetsMageProductConfiguration extends SoapSerializableObject implements MeetsProduct.Configuration {
    Map configuration;
    int stock;

    @Override
    public Map getAttributeOptionMap() {
        return configuration;
    }

    @Override
    public int getStock() {
        return stock;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy