12345678910111213141516171819202122232425262728 |
- /**
- *
- */
- package org.jim.common.packets;
- /**
- * @author WChao
- *
- */
- public class HeartbeatBody extends Message{
-
- private static final long serialVersionUID = -1773817279179288833L;
- private byte hbbyte;
-
- public HeartbeatBody(){}
- public HeartbeatBody(byte hbbyte){
- this.hbbyte = hbbyte;
- }
- public byte getHbbyte() {
- return hbbyte;
- }
- public HeartbeatBody setHbbyte(byte hbbyte) {
- this.hbbyte = hbbyte;
- return this;
- }
-
- }
|