VMware GemFire Java API Reference
Package org.apache.geode.management
Class MembershipAttributesData
- java.lang.Object
-
- org.apache.geode.management.MembershipAttributesData
-
@Deprecated public class MembershipAttributesData extends Object
Deprecated.this API is scheduled to be removedComposite data type used to distribute the membership attributes for aRegion.
-
-
Constructor Summary
Constructors Constructor Description MembershipAttributesData(Set<String> requiredRoles, String lossAction, String resumptionAction)Deprecated.This constructor is to be used by internal JMX framework only.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetLossAction()Deprecated.Returns the policy that describes the action to take if any required roles are missing.Set<String>getRequiredRoles()Deprecated.Returns the set of Roles that are required for the reliability of this region.StringgetResumptionAction()Deprecated.Returns the policy that describes the action to take when resuming from missing roles.StringtoString()Deprecated.String representation of MembershipAttributesData
-
-
-
Constructor Detail
-
MembershipAttributesData
@ConstructorProperties({"requiredRoles","lossAction","resumptionAction"}) public MembershipAttributesData(Set<String> requiredRoles, String lossAction, String resumptionAction)
Deprecated.This constructor is to be used by internal JMX framework only. User should not try to create an instance of this class.- Parameters:
requiredRoles- Array of required role names by this process for reliable access to the regionlossAction- The configuration defining how this process behaves when there are missing required rolesresumptionAction- The action to take when missing required roles return to the system
-
-
Method Detail
-
getRequiredRoles
public Set<String> getRequiredRoles()
Deprecated.Returns the set of Roles that are required for the reliability of this region.- Returns:
- the set of Roles that are required for the reliability of this region
-
getLossAction
public String getLossAction()
Deprecated.Returns the policy that describes the action to take if any required roles are missing.- Returns:
- the policy that describes the action to take if any required roles are missing
-
getResumptionAction
public String getResumptionAction()
Deprecated.Returns the policy that describes the action to take when resuming from missing roles.- Returns:
- the policy that describes the action to take when resuming from missing roles
-
-