package se.leap.bitmaskclient.tethering; public class TetheringState implements Cloneable { public boolean isWifiTetheringEnabled; public boolean isUsbTetheringEnabled; public boolean isBluetoothTetheringEnabled; public boolean isVpnWifiTetheringAllowed; public boolean isVpnUsbTetheringAllowed; public boolean isVpnBluetoothTetheringAllowed; public String wifiInterface = ""; public String usbInterface = ""; public String bluetoothInterface = ""; public String wifiAddress = ""; public String lastWifiAddress = ""; public String usbAddress = ""; public String bluetoothAddress = ""; public boolean tetherWifiVpn() { return isWifiTetheringEnabled && isVpnWifiTetheringAllowed; } public boolean tetherUsbVpn() { return isUsbTetheringEnabled && isVpnUsbTetheringAllowed; } public boolean tetherBluetoothVpn() { return isBluetoothTetheringEnabled && isVpnBluetoothTetheringAllowed; } public boolean hasAnyDeviceTetheringEnabled() { return isBluetoothTetheringEnabled || isUsbTetheringEnabled || isWifiTetheringEnabled; } public boolean hasAnyVpnTetheringAllowed() { return isVpnWifiTetheringAllowed || isVpnUsbTetheringAllowed || isVpnBluetoothTetheringAllowed; } }