com.github.dreamhead.moco.internal.SessionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moco-core Show documentation
Show all versions of moco-core Show documentation
Moco is an easy setup stub framework, mainly focusing on testing and integration.
package com.github.dreamhead.moco.internal;
import com.github.dreamhead.moco.Request;
import com.github.dreamhead.moco.Response;
public class SessionContext {
private final Request request;
private final Response response;
public SessionContext(final Request request, final Response response) {
this.request = request;
this.response = response;
}
public Request getRequest() {
return this.request;
}
public Response getResponse() {
return response;
}
}