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

com.github.lontime.exthttp.common.Response Maven / Gradle / Ivy

package com.github.lontime.exthttp.common;

import java.util.Map;

import lombok.Builder;
import lombok.Getter;

/**
 * Response.
 * @author lontime
 * @since 1.0
 * @param  T
 */
@Builder
@Getter
public class Response {

    private int status;

    private T body;

    private Map headers;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy