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

com.capitalone.dashboard.testutil.TestResponse Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show 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 - 2024 Weber Informatics LLC | Privacy Policy