Interface SystemCompatibilityService
-
- All Known Implementing Classes:
DefaultSystemCompatibilityService
public interface SystemCompatibilityService
A service for retrieving information about the platforms supported by Confluence.- Since:
- 5.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Collection<String>
getSupportedDatabases()
String
getSupportedJavaRuntime()
Deprecated.since 6.13 usegetSupportedJavaRuntimes()
Collection<String>
getSupportedJavaRuntimes()
Collection<String>
getSupportedJavaVersions()
Collection<String>
getSupportedOperatingSystems()
Collection<String>
getSupportedTomcatVersions()
-
-
-
Method Detail
-
getSupportedJavaVersions
Collection<String> getSupportedJavaVersions()
- Returns:
- the supported jdk version of this Confluence instance
- Since:
- 5.5
-
getSupportedJavaRuntimes
Collection<String> getSupportedJavaRuntimes()
- Returns:
- the supported jdk runtimes of this Confluence instance
- Since:
- 6.13
-
getSupportedJavaRuntime
@Deprecated String getSupportedJavaRuntime()
Deprecated.since 6.13 usegetSupportedJavaRuntimes()
- Returns:
- the supported jdk runtime of this Confluence instance
-
getSupportedOperatingSystems
Collection<String> getSupportedOperatingSystems()
- Returns:
- a list of supported operating systems for Confluence server installation
-
getSupportedDatabases
Collection<String> getSupportedDatabases()
- Returns:
- a list of supported databases
-
getSupportedTomcatVersions
Collection<String> getSupportedTomcatVersions()
- Returns:
- a list of supported tomcat versions
-
-