
com.capitalone.dashboard.testutil.TestResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.testutil;
import org.springframework.http.HttpStatus;
public class TestResponse {
private T body;
private HttpStatus status;
public TestResponse(T body, HttpStatus status) {
this.body = body;
this.status = status;
}
public T getBody() {
return body;
}
public void setBody(T body) {
this.body = body;
}
public HttpStatus getStatus() {
return status;
}
public void setStatus(HttpStatus status) {
this.status = status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy