HeartbeatBody.java 442 B

12345678910111213141516171819202122232425262728
  1. /**
  2. *
  3. */
  4. package org.jim.common.packets;
  5. /**
  6. * @author WChao
  7. *
  8. */
  9. public class HeartbeatBody extends Message{
  10. private static final long serialVersionUID = -1773817279179288833L;
  11. private byte hbbyte;
  12. public HeartbeatBody(){}
  13. public HeartbeatBody(byte hbbyte){
  14. this.hbbyte = hbbyte;
  15. }
  16. public byte getHbbyte() {
  17. return hbbyte;
  18. }
  19. public HeartbeatBody setHbbyte(byte hbbyte) {
  20. this.hbbyte = hbbyte;
  21. return this;
  22. }
  23. }