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 ClusterJoinConfiggetClusterJoinConfig()Deprecated, for removal: This API element is subject to removal in a future version.StringgetDescription()Deprecated, for removal: This API element is subject to removal in a future version.intgetMemberCount()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.StringgetName()Deprecated, for removal: This API element is subject to removal in a future version.booleanisRunning()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.
-
-