Class FixedPartitionAttributesData

java.lang.Object
org.apache.geode.management.FixedPartitionAttributesData

public class FixedPartitionAttributesData extends Object
Composite date type used to distribute the fixed partition attributes for a Region.
Since:
GemFire 7.0
  • 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 partition
      primary - whether this member is the primary for the partition
      numBucket - the number of buckets allowed for the partition
  • Method Details

    • getName

      public String 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

      public String toString()
      String representation of FixedPartitionAttributesData
      Overrides:
      toString in class Object