Package org.apache.geode.management
Class FixedPartitionAttributesData
java.lang.Object
org.apache.geode.management.FixedPartitionAttributesData
Composite date type used to distribute the fixed partition attributes for a
Region.- Since:
- GemFire 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionFixedPartitionAttributesData(String name, boolean primary, int numBucket) This constructor is to be used by internal JMX framework only. -
Method Summary
-
Constructor Details
-
FixedPartitionAttributesData
@ConstructorProperties({"name","primary","numBucket"}) public FixedPartitionAttributesData(String name, boolean primary, int numBucket) This constructor is to be used by internal JMX framework only. User should not try to create an instance of this class.- Parameters:
name- the name of the partitionprimary- whether this member is the primary for the partitionnumBucket- the number of buckets allowed for the partition
-
-
Method Details
-
getName
Returns the name of the partition.- Returns:
- the name of the partition
-
isPrimary
public boolean isPrimary()Returns whether this member is the primary for the partition.- Returns:
- True if this member is the primary, false otherwise.
-
getNumBucket
public int getNumBucket()Returns the number of buckets allowed for the partition.- Returns:
- the number of buckets allowed for the partition
-
toString
String representation of FixedPartitionAttributesData
-