public abstract class AdfServerPlatformSupport extends AdfAbstractSupport
AdfAbstractSupport.PLATFORM_TYPE
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CLUSTER_UNKNOWN
Checked value for getClusterName().
|
Constructor and Description |
---|
AdfServerPlatformSupport() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAdminServerName()
Return the name of the AdminServer for the current Domain.
|
oracle.jrf.ApplicationIdentifier |
getApplicationIdentifier()
Return the ApplicationIdentifier instance which contains the deployment and runtime application
names, and application version if applicable.
|
byte[] |
getCheckSum(java.lang.String algorithm,
byte[] data)
This method will provide a cross platform checksum calculation support.
|
java.lang.String |
getClusterName()
Return cluster name of the running server.
|
java.lang.String |
getCommonComponentsHome()
Return the path to Common Components home directory.
|
protected abstract java.lang.Object |
getConcretePlatformSupport()
This abstract method will let each concrete sub platform support class to provide
either JRF sever platform support or others.
|
java.lang.String |
getDomainConfigDirectory()
Return the FMW domain/cell config directory.
|
java.lang.String |
getDomainName()
Return the domain name in WebLogic server and cell name in WebSphere server
|
java.sql.Connection |
getNativeDBConnection(java.sql.Connection datasourceJdbcConnection,
java.lang.Class targetUnwrapClass)
This method will unwrap DB connection to native DB connection in current server platform.
|
java.lang.String |
getPlatformName()
Return the application's running server platform name, e.g.
|
oracle.jrf.PortConfig |
getPortConfig()
Return the port configuration object of the running server.
|
oracle.jrf.PortConfig |
getPortConfig(java.lang.String serverId)
Return the port configuration object of a specific server in the same WebLogic domain or WAS cell as the running server.
|
java.lang.String |
getServerConfigDirectory()
Return the FMW server config directory.
|
java.lang.String |
getServerConfigDirectory(java.lang.String domainName,
java.lang.String serverName)
Return config directory of a specified server under a specified domain/cell
|
java.lang.String |
getServerLogPath()
Return the Absolute path to the log directory associated with this Server instance
|
java.lang.String |
getServerName()
Return the name of the current Server.
|
java.lang.String[] |
getSupportedPlatformNames()
Return the array of application server platform names being supported by the portability layer.
|
boolean |
isAdminServer()
Return true if the current Server is the AdminServer
|
boolean |
isExalogicOptimizationsEnabled()
Returns true if the underlying platform has optimizations for Exalogic turned on.
|
static boolean |
isGlassFish()
Deprecated.
see AdfServerPlatformUtil.isGlassFish()
|
static boolean |
isJBoss()
Deprecated.
see AdfServerPlatformUtil.isJBoss()
|
static boolean |
isJEE()
Deprecated.
see AdfServerPlatformUtil.isJEE()
|
static boolean |
isTomcat()
Deprecated.
see AdfServerPlatformUtil.isTomcat()
|
static boolean |
isWebLogic()
Deprecated.
see AdfServerPlatformUtil.isWebLogic()
|
static boolean |
isWebSphere()
Deprecated.
see AdfServerPlatformUtil.isWebSphere()
|
boolean |
isWebSphereAS()
Deprecated.
see AdfServerPlatformUtil.isWebSphereAS()
|
boolean |
isWebSphereND()
Deprecated.
see AdfServerPlatformUtil.isWebSphereND()
|
public static final java.lang.String CLUSTER_UNKNOWN
public java.lang.String getClusterName() throws oracle.jrf.PortabilityLayerException
Usage: String clusterName = platform.getClusterName(); boolean isServerClustered = clusterName != null && clusterName != ServerPlatformSupport.CLUSTER_UNKNOWN;
oracle.jrf.PortabilityLayerException
- - when there is problem accessing runtime mbeansUnknownPlatformException
- - when the method is called in unsupported platformpublic byte[] getCheckSum(java.lang.String algorithm, byte[] data) throws java.lang.Exception
algorithm
- checksum algorithm string such as "MD5", "SHA1", "SHA-256", etc. By default, "MD5" will be
used if null string passed indata
- byte[] data valuejava.lang.Exception
protected abstract java.lang.Object getConcretePlatformSupport() throws oracle.jrf.PortabilityLayerException
oracle.jrf.PortabilityLayerException
public java.lang.String getPlatformName()
UnknownPlatformException
- - when the method is called in unsupported platformpublic oracle.jrf.ApplicationIdentifier getApplicationIdentifier() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
ApplicationIdentifier
public java.sql.Connection getNativeDBConnection(java.sql.Connection datasourceJdbcConnection, java.lang.Class targetUnwrapClass)
datasourceJdbcConnection
- targetUnwrapClass
- public java.lang.String[] getSupportedPlatformNames()
UnknownPlatformException
- - when the method is called in unsupported platformpublic java.lang.String getAdminServerName() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public java.lang.String getServerName() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public java.lang.String getServerLogPath() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public boolean isAdminServer() throws oracle.jrf.PortabilityLayerException
oracle.jrf.PortabilityLayerException
public static boolean isWebLogic()
public static boolean isWebSphere()
public boolean isWebSphereND()
public boolean isWebSphereAS()
public static boolean isJBoss()
public static boolean isJEE()
public static boolean isGlassFish()
public static boolean isTomcat()
public java.lang.String getServerConfigDirectory(java.lang.String domainName, java.lang.String serverName) throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public java.lang.String getDomainConfigDirectory() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public java.lang.String getServerConfigDirectory() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public java.lang.String getDomainName() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public oracle.jrf.PortConfig getPortConfig() throws oracle.jrf.PortabilityLayerException
Return the port configuration object of the running server. This method is optimized by caching the result and automatically refreshed the cache when change to the port configuration is detected. Note: On WAS platform, the result is built from parsing local configurations. WAS ND user is required to synchronize the local node to obtain configurations from the master repository, if changes were made to related configurations.
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException
public oracle.jrf.PortConfig getPortConfig(java.lang.String serverId) throws oracle.jrf.PortabilityLayerException
Return the port configuration object of a specific server in the same WebLogic domain or WAS cell as the running server. The return instance is not cached. This is used to obtain port configuration of a server that differs from the running server. Not supported on single server platforms: JBoss and WAS AS. LIMITATION: On WAS platform, if the running server is not "dmgr" or not in the same node as the specifying server, JRF can only discover the specifying server JNDI port/url using local configuration files of the running server. Only getJndiProviderURL() and and getJndiSslProviderURL() can be relied up on the returned PortConfig instance in this case. If you can connect to MBean server on the "dmgr", use JRF domain runtime MBean, ObjectName "oracle.jrf:name=JRFService,type=oracle.jrf.JRFServiceMBean", to obtain server URLs, see oracle.jrf.JRFServiceMBean. Note: On WAS platform, the result is built from parsing local configurations. WAS ND user is required to synchronize the local node to obtain configurations from the master repository, if changes were made to related configurations.
serverId
- - server name on WebLogic. On WAS ND, it is the containment path of the server (i.e: "/Cell:cell1/Node:node1/Server:server1").oracle.jrf.PortabilityLayerException
- - when used on JBoss or WAS AS.UnknownPlatformException
- - when the method is called in unsupported platformpublic boolean isExalogicOptimizationsEnabled()
public java.lang.String getCommonComponentsHome() throws oracle.jrf.PortabilityLayerException
UnknownPlatformException
- - when the method is called in unsupported platformoracle.jrf.PortabilityLayerException