
com.github.iarellano.rest_client.extract.json.JsonProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iad-rest-client-maven-plugin Show documentation
Show all versions of iad-rest-client-maven-plugin Show documentation
At times we need to consume external services as part of a build process, for example
to verify which version of an API is deployed, verify that a service is online, get
configurations from some remote storage provider, etc.
This plugin is aimed to provide a way to make HTTP request either to get resources,
upload files, submit forms, post json, post xml, etc.
The newest version!
package com.github.iarellano.rest_client.extract.json;
public class JsonProperty {
private String name;
private String jsonPath;
private boolean failFast = true;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getJsonPath() {
return jsonPath;
}
public void setJsonPath(String jsonPath) {
this.jsonPath = jsonPath;
}
public boolean isFailFast() {
return failFast;
}
public void setFailFast(boolean failFast) {
this.failFast = failFast;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy