Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
7286 amit.gupta 1
package in.shop2020.metamodel.core;
2
 
3
import in.shop2020.metamodel.util.MetaModelComponent;
4
 
5
import java.util.Date;
6
 
7
public class ExpertReview  extends MetaModelComponent {
8
 
9
	/**
10
	 * 
11
	 */
12
	private static final long serialVersionUID = 1L;
13
	public Date getCreatedOn() {
14
		return createdOn;
15
	}
16
 
17
	private ExpertReviewStatus status;
18
 
19
	private Date createdOn;
20
	private String reviewContent;
7312 amit.gupta 21
	private String url;
7286 amit.gupta 22
	private String source;
23
	private String createdBy;
24
	private String approvedBy;
25
 
26
	public ExpertReview(Date createdOn) {
27
		super();
28
		this.createdOn = createdOn;
29
	}
30
	public void setStatus(ExpertReviewStatus status) {
31
		this.status = status;
32
	}
33
	public ExpertReviewStatus getStatus() {
34
		return status;
35
	}
36
 
37
	public String getReviewContent() {
38
		return reviewContent;
39
	}
40
	public void setReviewContent(String reviewContent) {
41
		this.reviewContent = reviewContent;
42
	}
43
	public String getSource() {
44
		return source;
45
	}
46
	public void setSource(String source) {
47
		this.source = source;
48
	}
49
	public void setCreatedBy(String createdBy) {
50
		this.createdBy = createdBy;
51
	}
52
	public String getCreatedBy() {
53
		return createdBy;
54
	}
55
	public void setApprovedBy(String approvedBy) {
56
		this.approvedBy = approvedBy;
57
	}
58
	public String getApprovedBy() {
59
		return approvedBy;
60
	}
7312 amit.gupta 61
	public void setUrl(String url) {
62
		this.url = url;
63
	}
64
	public String getUrl() {
65
		return url;
66
	}
7286 amit.gupta 67
 
68
 
69
}