Skip to content
Snippets Groups Projects

Robert/rd f4 j

Open Smith, Robert requested to merge Robert/RdF4J into master
8 files
+ 1220
116
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -7,6 +7,11 @@ public class Award {
private String description;
private String date;
/**
* The unique ID for this award in the database.
*/
private String uid;
public String getDescription() {
return description;
}
@@ -19,4 +24,22 @@ public class Award {
public void setDate(String date) {
this.date = date;
}
/**
* Getter method for the unique ID.
*
* @return The unique ID.
*/
public String getUID() {
return uid;
}
/**
* Setter method for the unique ID.
*
* @param uid the new unique id.
*/
public void setUID(String uid) {
this.uid = uid;
}
}
Loading