Subversion Repositories SmartDukaan

Rev

Rev 24509 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23637 amit.gupta 1
package com.spice.profitmandi.common.model;
2
 
3
public class ReporticoUrlInfo {
4
	private String url;
5
	private String title;
6
	private String description;
7
 
8
 
9
	public ReporticoUrlInfo(String url, String title, String description) {
10
		super();
11
		this.url = url;
12
		this.title = title;
13
		this.description = description;
14
	}
15
	@Override
16
	public String toString() {
17
		return "ReportUrl [url=" + url + ", title=" + title + ", description=" + description + "]";
18
	}
19
	public String getUrl() {
20
		return url;
21
	}
22
	public void setUrl(String url) {
23
		this.url = url;
24
	}
25
	public String getTitle() {
26
		return title;
27
	}
28
	public void setTitle(String title) {
29
		this.title = title;
30
	}
31
	public String getDescription() {
32
		return description;
33
	}
34
	public void setDescription(String description) {
35
		this.description = description;
36
	}
37
}