Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. private String topic;
  2. Msg MsgObject;
  3. private String op;
  4.  
  5. public String getTopic() {
  6. return topic;
  7. }
  8.  
  9. public Msg getMsg() {
  10. return MsgObject;
  11. }
  12.  
  13. public String getOp() {
  14. return op;
  15.  
  16. }
  17.  
  18. public void setTopic(String topic) {
  19.  
  20. this.topic = topic;
  21.  
  22. }
  23.  
  24. public void setMsg(Msg msgObject) {
  25. this.MsgObject = msgObject;
  26. }
  27. public void setOp(String op) {
  28. this.op = op;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement