Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
2119 ankur.sing 1
package in.shop2020.catalog.dashboard.shared;
2
 
3
import java.io.Serializable;
4
 
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
2427 ankur.sing 7
/**
8
 * Bean to store item key for a vendor
9
 *
10
 */
11
@SuppressWarnings("serial")
2119 ankur.sing 12
public class VendorItemMapping implements IsSerializable, Serializable {
13
    long vendorId;
14
    String itemKey;
15
 
16
    public VendorItemMapping() {
17
 
18
    }
19
 
20
    public VendorItemMapping(long vendorId, String itemKey) {
21
        this.vendorId = vendorId;
22
        this.itemKey = itemKey;
23
    }
24
 
25
    public long getVendorId() {
26
        return vendorId;
27
    }
28
 
29
    public void setVendorId(long vendorId) {
30
        this.vendorId = vendorId;
31
    }
32
 
33
    public String getItemKey() {
34
        return itemKey;
35
    }
36
 
37
    public void setItemKey(String itemKey) {
38
        this.itemKey = itemKey;
39
    }
40
}