
com.github.tomakehurst.wiremock.admin.model.GetScenariosResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock-standalone Show documentation
Show all versions of wiremock-standalone Show documentation
A web service test double for all occasions
package com.github.tomakehurst.wiremock.admin.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.tomakehurst.wiremock.stubbing.Scenario;
import java.util.List;
import java.util.Map;
public class GetScenariosResult {
private final List scenarios;
@JsonCreator
public GetScenariosResult(@JsonProperty("scenarios") List scenarios) {
this.scenarios = scenarios;
}
public List getScenarios() {
return scenarios;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy