net.cpollet.maven.plugins.postman.Environment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postman-maven-plugin Show documentation
Show all versions of postman-maven-plugin Show documentation
A maven plugin to export JAX-RS annotated classes and methods to Postman collection
The newest version!
package net.cpollet.maven.plugins.postman;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.net.URL;
@AllArgsConstructor
@NoArgsConstructor
@Data
public class Environment {
private String name;
/**
* The base URL to use when generating the postman collections. This has to be a valid URL.
*/
private URL baseUrl;
/**
* The basic auth username and password to use, if any. It contains two fields, username
and
* password
(see {@link BasicAuth}).
*/
private BasicAuth basicAuth;
}