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

net.cpollet.maven.plugins.postman.frontend.api.Context Maven / Gradle / Ivy

Go to download

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