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

io.github.azagniotov.stubby4j.stubs.StubSearchResult Maven / Gradle / Ivy

Go to download

A highly flexible & configurable tool for testing interactions of SOA applications with web services (REST, SOAP, WSDL etc.) over HTTP(S) protocol. It is an actual HTTP server (stubby4j uses embedded Jetty) that acts like a real web service, ready for consumption by your code. Allows stubbing of external systems with ease for integration testing

There is a newer version: 7.6.1
Show newest version
package io.github.azagniotov.stubby4j.stubs;


public class StubSearchResult {

    private final StubRequest invariant;
    private final StubResponse match;

    StubSearchResult(final StubRequest invariant, final StubResponse match) {
        this.invariant = invariant;
        this.match = match;
    }

    public StubRequest getInvariant() {
        return invariant;
    }

    public StubResponse getMatch() {
        return match;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy