
net.cpollet.maven.plugins.postman.frontend.api.Context 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.frontend.api;
import lombok.Builder;
import lombok.Getter;
import org.apache.commons.lang3.StringUtils;
@Builder
@Getter
public class Context {
private static final String SLASH = "/";
private final String baseUrl;
private final String username;
private final String password;
public String getBaseUrl() {
return StringUtils.stripEnd(baseUrl, SLASH);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy