restdocs.tool.export.postman.exporter.Url Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restdocs-tool-export Show documentation
Show all versions of restdocs-tool-export Show documentation
Generates AsciiDoc snippets via Spring Restdocs that are exports for Insomnia or Postman that can be download and imported.
The newest version!
package restdocs.tool.export.postman.exporter;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
import java.util.Set;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Url {
private String raw;
private String protocol;
private List host;
private Integer port;
private List path;
private Set query;
public String getRaw() {
return raw;
}
public void setRaw(String raw) {
this.raw = raw;
}
public String getProtocol() {
return protocol;
}
public void setProtocol(String protocol) {
this.protocol = protocol;
}
public List getHost() {
return host;
}
public void setHost(List host) {
this.host = host;
}
public Integer getPort() {
return port;
}
public void setPort(Integer port) {
this.port = port;
}
public List getPath() {
return path;
}
public void setPath(List path) {
this.path = path;
}
public Set getQuery() {
return query;
}
public void setQuery(Set query) {
this.query = query;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy