HandlerCatchData.java 888 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. import org.dom4j.Element;
  3. import javax.sip.RequestEvent;
  4. /**
  5. * @author lin
  6. */
  7. public class HandlerCatchData {
  8. private RequestEvent evt;
  9. private Device device;
  10. private Element rootElement;
  11. public HandlerCatchData(RequestEvent evt, Device device, Element rootElement) {
  12. this.evt = evt;
  13. this.device = device;
  14. this.rootElement = rootElement;
  15. }
  16. public RequestEvent getEvt() {
  17. return evt;
  18. }
  19. public void setEvt(RequestEvent evt) {
  20. this.evt = evt;
  21. }
  22. public Device getDevice() {
  23. return device;
  24. }
  25. public void setDevice(Device device) {
  26. this.device = device;
  27. }
  28. public Element getRootElement() {
  29. return rootElement;
  30. }
  31. public void setRootElement(Element rootElement) {
  32. this.rootElement = rootElement;
  33. }
  34. }