Command.java 767 Bytes
package com.example.mina.client.entity;

import com.example.mina.server.util.LogUtils;

/**
 * @author dy
 * @date 2021/03/10
 */
public class Command {
    private String description;
    private byte[] bytes;

    public Command(String description, byte[] bytes) {
        this.description = description;
        this.bytes = bytes;
    }

    @Override
    public String toString() {
        return description + " " + LogUtils.toHexString(bytes);
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public byte[] getBytes() {
        return bytes;
    }

    public void setBytes(byte[] bytes) {
        this.bytes = bytes;
    }
}