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

io.specto.hoverfly.junit.api.command.JournalSearchCommand Maven / Gradle / Ivy

There is a newer version: 0.19.1
Show newest version
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