ServiceEvent.java 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.yihu.hos.models;
  2. /**
  3. * @created Airhead 2016/8/4.
  4. */
  5. public class ServiceEvent {
  6. private String event;
  7. private String serviceName;
  8. private String packageName;
  9. private String className;
  10. private String path;
  11. public String getEvent() {
  12. return event;
  13. }
  14. public void setEvent(String event) {
  15. this.event = event;
  16. }
  17. public String getServiceName() {
  18. return serviceName;
  19. }
  20. public void setServiceName(String serviceName) {
  21. this.serviceName = serviceName;
  22. }
  23. public String getPackageName() {
  24. return packageName;
  25. }
  26. public void setPackageName(String packageName) {
  27. this.packageName = packageName;
  28. }
  29. public String getClassName() {
  30. return className;
  31. }
  32. public void setClassName(String className) {
  33. this.className = className;
  34. }
  35. public String getPath() {
  36. return path;
  37. }
  38. public void setPath(String path) {
  39. this.path = path;
  40. }
  41. }