All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plumelog.core.dto.RunLogCompressMessage Maven / Gradle / Ivy

package com.plumelog.core.dto;


public class RunLogCompressMessage {

    private Integer length;
    private byte[] body;

    public byte[] getBody() {
        return body;
    }

    public void setBody(byte[] body) {
        this.body = body;
    }

    public Integer getLength() {
        return length;
    }

    public void setLength(Integer length) {
        this.length = length;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy