nva.commons.apigateway.ProxyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apigateway Show documentation
Show all versions of apigateway Show documentation
A commons library for the NVA project
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