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

restdocs.tool.export.postman.exporter.Url Maven / Gradle / Ivy

Go to download

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