Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21297 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class SolrSearchResultResponse
4
{
5
	private String id;
6
 
7
	private String title;
8
 
9
	private String thumbnail;
10
 
11
	private String[] ids;
12
 
13
	private String productUrl;
14
 
15
	public String getId ()
16
	{
17
		return id;
18
	}
19
 
20
	public void setId (String id)
21
	{
22
		this.id = id;
23
	}
24
 
25
	public String getTitle ()
26
	{
27
		return title;
28
	}
29
 
30
	public void setTitle (String title)
31
	{
32
		this.title = title;
33
	}
34
 
35
	public String getThumbnail ()
36
	{
37
		return thumbnail;
38
	}
39
 
40
	public void setThumbnail (String thumbnail)
41
	{
42
		this.thumbnail = thumbnail;
43
	}
44
 
45
	public String[] getIds ()
46
	{
47
		return ids;
48
	}
49
 
50
	public void setIds (String[] ids)
51
	{
52
		this.ids = ids;
53
	}
54
 
55
	public String getProductUrl ()
56
	{
57
		return productUrl;
58
	}
59
 
60
	public void setProductUrl (String productUrl)
61
	{
62
		this.productUrl = productUrl;
63
	}
64
 
65
}
66