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

io.github.yawenok.fcm.client.proxy.ProxyConfig Maven / Gradle / Ivy

The newest version!
package io.github.yawenok.fcm.client.proxy;

public class ProxyConfig {
    private final String host;
    private final int port;

    private final String username;
    private final String password;

    public ProxyConfig(final String host, final int port) {
        this(host, port, null, null);
    }

    public ProxyConfig(final String host, final int port, final String username, final String password) {
        this.host = host;
        this.port = port;
        this.username = username;
        this.password = password;
    }

    public String getHost() {
        return host;
    }

    public int getPort() {
        return port;
    }

    public String getUsername() {
        return username;
    }

    public String getPassword() {
        return password;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy