com.zusmart.base.network.message.fixedlength.FixedLengthMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zusmart-base Show documentation
Show all versions of zusmart-base Show documentation
提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread
package com.zusmart.base.network.message.fixedlength;
import com.zusmart.base.network.message.Message;
public class FixedLengthMessage implements Message {
private byte[] content;
public FixedLengthMessage() {
super();
}
public FixedLengthMessage(byte[] content) {
super();
this.content = content;
}
public byte[] getContent() {
return content;
}
public void setContent(byte[] content) {
this.content = content;
}
}