Skip to content

Instantly share code, notes, and snippets.

@markito
Last active August 31, 2020 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markito/df869ca8245f59ffde0175b0f679c476 to your computer and use it in GitHub Desktop.
Save markito/df869ca8245f59ffde0175b0f679c476 to your computer and use it in GitHub Desktop.
scf-java
package com.example.demo;
public class UserReview {
private String comment;
private int rating;
private String username;
public UserReview() { }
public String getComment() {
return comment;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public int getRating() {
return rating;
}
public void setRating(int rating) {
this.rating = rating;
}
public void setComment(String comment) {
this.comment = comment;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment