Subversion Repositories SmartDukaan

Rev

Rev 2119 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package in.shop2020.catalog.dashboard.shared;

import java.io.Serializable;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * Bean to store item key for a vendor
 *
 */
@SuppressWarnings("serial")
public class VendorItemMapping implements IsSerializable, Serializable {
    long vendorId;
    String itemKey;
   
    public VendorItemMapping() {
        
    }
    
    public VendorItemMapping(long vendorId, String itemKey) {
        this.vendorId = vendorId;
        this.itemKey = itemKey;
    }

    public long getVendorId() {
        return vendorId;
    }

    public void setVendorId(long vendorId) {
        this.vendorId = vendorId;
    }

    public String getItemKey() {
        return itemKey;
    }

    public void setItemKey(String itemKey) {
        this.itemKey = itemKey;
    }
}