Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. package org.openmrs.module.feedback;
  2.  
  3. import org.openmrs.BaseOpenmrsObject;
  4. import org.openmrs.User;
  5.  
  6. public class FeedbackUser extends BaseOpenmrsObject implements java.io.Serializable {
  7.  
  8. private Integer id;
  9. private Feedback feedbackId;
  10. private User userId;
  11.  
  12. public FeedbackUser() {}
  13.  
  14. public FeedbackUser(Feedback feedbackId, User userId){
  15. this.feedbackId = feedbackId;
  16. this.userId = userId;
  17. }
  18.  
  19. public Feedback getFeedbackId() {
  20. return feedbackId;
  21. }
  22.  
  23. public void setFeedbackId(Feedback feedbackId) {
  24. this.feedbackId = feedbackId;
  25. }
  26.  
  27. public User getUserId() {
  28. return userId;
  29. }
  30.  
  31. public void setUserId(User userId) {
  32. this.userId = userId;
  33. }
  34.  
  35. public Integer getId() {
  36. return this.id;
  37. }
  38.  
  39. public void setId(Integer id) {
  40. this.id = id;
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement