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

com.github.tomakehurst.wiremock.common.BrowserProxySettings Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Copyright (C) 2011 Thomas Akehurst
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.tomakehurst.wiremock.common;

import com.github.tomakehurst.wiremock.common.ssl.KeyStoreSettings;

import java.io.File;
import java.util.List;
import java.util.Objects;

import static java.util.Collections.emptyList;

public final class BrowserProxySettings {

    public static final String DEFAULT_CA_KEYSTORE_PATH = new File(
                System.getProperty("user.home") + File.separatorChar
                + ".wiremock" + File.separatorChar
                + "ca-keystore.jks" + File.separatorChar
            ).getAbsolutePath();
    public static final String DEFAULT_CA_KESTORE_PASSWORD = "password";

    public static BrowserProxySettings DISABLED = new Builder().build();

    private final boolean enabled;
    private final boolean trustAllProxyTargets;
    private final List trustedProxyTargets;
    private final KeyStoreSettings caKeyStoreSettings;

    public BrowserProxySettings(
        boolean enabled,
        boolean trustAllProxyTargets,
        List trustedProxyTargets,
        KeyStoreSettings caKeyStoreSettings
    ) {
        this.enabled = enabled;
        this.trustAllProxyTargets = trustAllProxyTargets;
        this.trustedProxyTargets = trustedProxyTargets;
        this.caKeyStoreSettings = caKeyStoreSettings;
    }

    public boolean enabled() {
        return enabled;
    }

    public boolean trustAllProxyTargets() {
        return trustAllProxyTargets;
    }

    public List trustedProxyTargets() {
        return trustedProxyTargets;
    }

    public KeyStoreSettings caKeyStore() {
        return caKeyStoreSettings;
    }

    @Override
    public String toString() {
        return "BrowserProxySettings{" +
                "enabled=" + enabled +
                ", trustAllProxyTargets=" + trustAllProxyTargets +
                ", trustedProxyTargets=" + trustedProxyTargets +
                ", caKeyStore='" + caKeyStoreSettings.path() + '\'' +
                '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        BrowserProxySettings that = (BrowserProxySettings) o;
        return enabled == that.enabled &&
                trustAllProxyTargets == that.trustAllProxyTargets &&
                Objects.equals(trustedProxyTargets, that.trustedProxyTargets) &&
                Objects.equals(caKeyStoreSettings, that.caKeyStoreSettings);
    }

    @Override
    public int hashCode() {
        return Objects.hash(enabled, trustAllProxyTargets, trustedProxyTargets, caKeyStoreSettings);
    }

    public static final class Builder {

        private boolean enabled = false;
        private boolean trustAllProxyTargets = false;
        private List trustedProxyTargets = emptyList();

        private KeyStoreSettings caKeyStoreSettings = KeyStoreSettings.NO_STORE;

        public Builder enabled(boolean enabled) {
            this.enabled = enabled;
            return this;
        }

        public Builder trustAllProxyTargets(boolean trustAllProxyTargets) {
            this.trustAllProxyTargets = trustAllProxyTargets;
            return this;
        }

        public Builder trustedProxyTargets(List trustedProxyTargets) {
            this.trustedProxyTargets = trustedProxyTargets;
            return this;
        }

        public Builder caKeyStoreSettings(KeyStoreSettings caKeyStoreSettings) {
            this.caKeyStoreSettings = caKeyStoreSettings;
            return this;
        }

        public BrowserProxySettings build() {
            return new BrowserProxySettings(enabled, trustAllProxyTargets, trustedProxyTargets, caKeyStoreSettings);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy