From f29dcad7bbea1cbff36614339d54e69348e4df36 Mon Sep 17 00:00:00 2001 From: /dev/fd0 Date: Wed, 28 May 2025 03:59:19 +0530 Subject: [PATCH] remove vpn gateway class --- .../sparrow/joinstr/VpnGateway.java | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/main/java/com/sparrowwallet/sparrow/joinstr/VpnGateway.java diff --git a/src/main/java/com/sparrowwallet/sparrow/joinstr/VpnGateway.java b/src/main/java/com/sparrowwallet/sparrow/joinstr/VpnGateway.java deleted file mode 100644 index fce7687d..00000000 --- a/src/main/java/com/sparrowwallet/sparrow/joinstr/VpnGateway.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.sparrowwallet.sparrow.joinstr; - -import java.io.Serializable; - -public class VpnGateway implements Serializable { - - private String host; - private String location; - private String ipAddress; - private int port; - private String protocol; - - public VpnGateway() {} - - public VpnGateway(String host, String location, String ipAddress, int port, String protocol) { - this.host = host; - this.location = location; - this.ipAddress = ipAddress; - this.port = port; - this.protocol = protocol; - } - - public String getHost() { return host; }; - public void setHost(String host) { this.host = host; }; - - public String getLocation() { return location; }; - public void setLocation(String location) { this.location = location; }; - - public String getIpAddress() { return ipAddress; }; - public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; }; - - public int getPort() { return port; }; - public void setPort(int port) { this.port = port; }; - - public String getProtocol() { return protocol; }; - public void setProtocol(String protocol) { this.protocol = protocol; }; - -}