LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
global class Url {
    global Url(String protocol, String host, Integer port, String file) { }
    global Url(String protocol, String host, String file) { }
    global Url(System.Url context, String spec) { }
    global Url(String spec) { }
    global Object clone() { }
    global String getAuthority() { }
    global static System.Url getCurrentRequestUrl() { }
    global Integer getDefaultPort() { }
    global String getFile() { }
    global static String getFileFieldURL(String objectId, String fieldName) { }
    global String getHost() { }
    global static System.Url getOrgDomainUrl() { }
    global String getPath() { }
    global Integer getPort() { }
    global String getProtocol() { }
    global String getQuery() { }
    global String getRef() { }
    global static System.Url getSalesforceBaseUrl() { }
    global String getUserInfo() { }
    global Boolean sameFile(System.Url other) { }
    global String toExternalForm() { }
    global String toString() { }
 
}