Subversion Repositories SmartDukaan

Rev

Rev 2119 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2119 Rev 2427
Line 2... Line 2...
2
 
2
 
3
import java.io.Serializable;
3
import java.io.Serializable;
4
 
4
 
5
import com.google.gwt.user.client.rpc.IsSerializable;
5
import com.google.gwt.user.client.rpc.IsSerializable;
6
 
6
 
-
 
7
/**
-
 
8
 * Bean to store item key for a vendor
-
 
9
 *
-
 
10
 */
-
 
11
@SuppressWarnings("serial")
7
public class VendorItemMapping implements IsSerializable, Serializable {
12
public class VendorItemMapping implements IsSerializable, Serializable {
8
    long vendorId;
13
    long vendorId;
9
    String itemKey;
14
    String itemKey;
10
   
15
   
11
    public VendorItemMapping() {
16
    public VendorItemMapping() {
Line 30... Line 35...
30
    }
35
    }
31
 
36
 
32
    public void setItemKey(String itemKey) {
37
    public void setItemKey(String itemKey) {
33
        this.itemKey = itemKey;
38
        this.itemKey = itemKey;
34
    }
39
    }
35
    
-
 
36
    
-
 
37
 
-
 
38
}
40
}