-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReview.java
More file actions
42 lines (33 loc) · 1016 Bytes
/
Copy pathReview.java
File metadata and controls
42 lines (33 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.accenture.itfactory.base.FilmApplication;
import java.util.*;
public class Review {
protected String filmId;
protected Calendar createdOn;
protected String createdBy;
protected float userRating;
protected String review;
public String getFilmId() {return this.filmId;}
public void setFilmId(String value){
this.filmId = value;
}
public Calendar getCreatedOn() { return this.createdOn; }
public void setCreatedOn(Calendar value)
{
this.createdOn = value;
}
public String getCreatedBy() { return this.createdBy; }
public void setCreatedBy(String value)
{
this.createdBy = value;
}
public float getUserRating() { return this.userRating; }
public void setUserRating(float value)
{
this.userRating = value;
}
public String getReview() { return this.review; }
public void setReview(String value)
{
this.review = value;
}
}