Subversion Repositories SmartDukaan

Rev

Rev 21426 | Rev 21448 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21426 Rev 21431
Line 1... Line 1...
1
package com.spice.profitmandi.web.req;
1
package com.spice.profitmandi.web.req;
2
 
2
 
3
import java.util.Set;
3
import java.util.Set;
4
 
4
 
5
public class RetailerAddBrandRequest {
5
public class RetailerAddBrandRequest {
6
	private long retailerId;
6
	private int retailerId;
7
	private Set<String> brandNames;
7
	private Set<String> brandNames;
8
	public long getRetailerId() {
8
	public int getRetailerId() {
9
		return retailerId;
9
		return retailerId;
10
	}
10
	}
11
	public void setRetailerId(long retailerId) {
11
	public void setRetailerId(int retailerId) {
12
		this.retailerId = retailerId;
12
		this.retailerId = retailerId;
13
	}
13
	}
14
	public Set<String> getBrandNames() {
14
	public Set<String> getBrandNames() {
15
		return brandNames;
15
		return brandNames;
16
	}
16
	}