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

nva.commons.apigateway.ProxyResponse Maven / Gradle / Ivy

The newest version!
package nva.commons.apigateway;

public class ProxyResponse {
    
    private final Integer statusCode;
    private final T body;
    
    public ProxyResponse(int statusCode, T body) {
        this.statusCode = statusCode;
        this.body = body;
    }
    
    public int getStatusCode() {
        return statusCode;
    }
    
    public T getBody() {
        return body;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy