EsbFramePacket.java 370 B

123456789101112131415161718
  1. package com.its.vms.esb.protocol;
  2. import java.nio.ByteBuffer;
  3. public abstract class EsbFramePacket {
  4. protected EsbFrameHead head;
  5. protected EsbReqVmsShortMsg body;
  6. protected EsbFrameTail tail;
  7. EsbFramePacket() {
  8. this.head = new EsbFrameHead();
  9. this.tail = new EsbFrameTail();
  10. }
  11. public abstract ByteBuffer getByteBuffer();
  12. }