io.specto.hoverfly.junit.api.command.JournalSearchCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hoverfly-java Show documentation
Show all versions of hoverfly-java Show documentation
Hoverfly for Java. Capture and simulate HTTP(S) services in JUnit tests.
package io.specto.hoverfly.junit.api.command;
import com.fasterxml.jackson.annotation.JsonInclude;
import io.specto.hoverfly.junit.core.model.Request;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class JournalSearchCommand {
private Request request;
public JournalSearchCommand() {
}
public JournalSearchCommand(Request request) {
this.request = request;
}
public Request getRequest() {
return request;
}
public void setRequest(Request request) {
this.request = request;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy