summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/pluggableTransports/DispatcherOptions.java
blob: 76ccbd7984b1c6cb9c29a0bdc5eec8a40c9fc40c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package se.leap.bitmaskclient.pluggableTransports;

import java.io.Serializable;

public class DispatcherOptions implements Serializable {
    public String cert;
    public String iatMode;
    public String remoteIP;
    public String remotePort;

    public DispatcherOptions(String remoteIP, String remotePort, String cert, String iatMode) {
        this.cert = cert;
        this.iatMode = iatMode;
        this.remoteIP = remoteIP;
        this.remotePort = remotePort;
    }

}