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

lv.ctco.cukesrest.internal.switches.ResponseWrapper Maven / Gradle / Ivy

The newest version!
package lv.ctco.cukesrest.internal.switches;


import io.restassured.response.Response;

@Deprecated // TODO: Need to be refactored
public class ResponseWrapper {

    private final Response response;

    public ResponseWrapper(Response response) {
        this.response = response;
    }

    public Integer statusCode() {
        return response.statusCode();
    }

    @Override // TODO: Finish
    public String toString() {
        return "statusCode<" + response.statusCode() + ">";
    }

    public Response getResponse() {
        return response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy