data-prepper-core/src/main/java/com/amazon/dataprepper/pipeline/server/HttpBasicAuthenticationConfig.java [16:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class HttpBasicAuthenticationConfig {
    private final String username;
    private final String password;

    @JsonCreator
    public HttpBasicAuthenticationConfig(
            @JsonProperty("username") final String username,
            @JsonProperty("password") final String password) {
        this.username = username;
        this.password = password;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



data-prepper-plugins/armeria-common/src/main/java/com/amazon/dataprepper/armeria/authentication/HttpBasicAuthenticationConfig.java [16:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class HttpBasicAuthenticationConfig {
    private final String username;
    private final String password;

    @JsonCreator
    public HttpBasicAuthenticationConfig(
            @JsonProperty("username") final String username,
            @JsonProperty("password") final String password) {
        this.username = username;
        this.password = password;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



