-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURLInfo.java
More file actions
35 lines (28 loc) · 1.06 KB
/
URLInfo.java
File metadata and controls
35 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import java.util.ArrayList;
/*
This class is used for creating the URL object
*/
public class URLInfo {
public String name = "";
public String status = "";
public String secure = "NA";
public String validity = "NA";
public Long expiry = null;
public ArrayList supportedProtocols = null;
public String phistank = "";
public String expiryDate = "";
public ArrayList<String> otherDomains = null;
public String[] supportedCipherSuites = {};
public URLInfo(String name, String status, String secure, String validity, String phistank, String expiryDate, Long expiry, ArrayList otherDomains, ArrayList supportedProtocols, String[] supportedCipherSuites) {
this.name = name;
this.status = status;
this.secure = secure;
this.validity = validity;
this.expiry = expiry;
this.supportedProtocols = supportedProtocols;
this.phistank = phistank;
this.expiryDate = expiryDate;
this.otherDomains = otherDomains;
this.supportedCipherSuites = supportedCipherSuites;
}
}