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

com.blade.mvc.http.RawBody Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.mvc.http;

import io.netty.handler.codec.http.FullHttpResponse;

public class RawBody implements Body {

    private final FullHttpResponse httpResponse;

    public RawBody(FullHttpResponse httpResponse) {
        this.httpResponse = httpResponse;
    }

    public FullHttpResponse httpResponse() {
        return httpResponse;
    }

    @Override
    public  T write(BodyWriter writer) {
        return writer.onRawBody(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy