Package com.atlassian.confluence.cluster
Interface ClusterInformation
-
- All Known Implementing Classes:
EmptyClusterInformation
,HazelcastClusterInformation
,RemoteClusterInformation
@Deprecated(since="8.2", forRemoval=true) public interface ClusterInformation
Deprecated, for removal: This API element is subject to removal in a future version.since 8.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description @Nullable ClusterJoinConfig
getClusterJoinConfig()
Deprecated, for removal: This API element is subject to removal in a future version.String
getDescription()
Deprecated, for removal: This API element is subject to removal in a future version.int
getMemberCount()
Deprecated, for removal: This API element is subject to removal in a future version.List<String>
getMembers()
Deprecated, for removal: This API element is subject to removal in a future version.String
getName()
Deprecated, for removal: This API element is subject to removal in a future version.boolean
isRunning()
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Method Detail
-
isRunning
boolean isRunning()
Deprecated, for removal: This API element is subject to removal in a future version.
-
getName
String getName()
Deprecated, for removal: This API element is subject to removal in a future version.
-
getDescription
String getDescription()
Deprecated, for removal: This API element is subject to removal in a future version.
-
getMembers
List<String> getMembers()
Deprecated, for removal: This API element is subject to removal in a future version.- Returns:
- a List of Strings with a description of each member of the cluster
-
getMemberCount
int getMemberCount()
Deprecated, for removal: This API element is subject to removal in a future version.- Returns:
- the number of members in the cluster
-
getClusterJoinConfig
@Nullable ClusterJoinConfig getClusterJoinConfig()
Deprecated, for removal: This API element is subject to removal in a future version.
-
-