Platform.java
1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.slf4j.Logger
* org.slf4j.LoggerFactory
*/
package com.adobe.service.impl;
import com.adobe.aemds.bedrock.internal.OSGiUtils;
import com.adobe.service.impl.PlatformPeerImpl;
import java.io.File;
import java.net.URLConnection;
import java.util.Properties;
import javax.naming.NameNotFoundException;
import org.omg.CORBA.ORB;
import org.omg.CORBA.Object;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public abstract class Platform {
protected static final Logger logger = LoggerFactory.getLogger(Platform.class);
public static final Platform UTIL = new PlatformPeerImpl();
Platform() {
}
public ORB getOrb() {
return OSGiUtils.getOrb();
}
public abstract Object lookup(String var1) throws NameNotFoundException;
public URLConnection getUrlConnection(String urlStr) {
throw new UnsupportedOperationException("getUrlConnection(): Unused operation invoked!");
}
public abstract void beginTransaction();
public abstract void commitTransaction();
public abstract File getCommonNativeDir();
public abstract File getLegacyCommonNativeDir();
public abstract File getSSLNativeDir();
public abstract File getSSLCertDir();
public abstract String getSystemTempDirectory();
public abstract Properties getEnvironmentVariables();
public synchronized String getSSLPassword() {
return null;
}
public abstract String getAppServer();
}