Interface SystemMember

  • All Known Subinterfaces:
    CacheServer, CacheVm

    @Deprecated
    public interface SystemMember
    Deprecated.
    as of 7.0 use the management package instead
    Administrative interface for monitoring a GemFire system member.
    Since:
    GemFire 3.5
    • Method Detail

      • getId

        java.lang.String getId()
        Deprecated.
        Gets identifying name of this member. For applications this is the string form of getDistributedMember(). For cache servers it is a unique cache server string.
        Returns:
        the identifying name of this member
      • getHost

        java.lang.String getHost()
        Deprecated.
        Gets host name of the machine this member resides on.
        Returns:
        the host name of the machine this member resides on
      • getHostAddress

        java.net.InetAddress getHostAddress()
        Deprecated.
        Gets the host of this member as an java.net.InetAddress.
        Returns:
        the host of this member as an java.net.InetAddress
      • getLog

        java.lang.String getLog()
        Deprecated.
        Retrieves the log for this member.
        Returns:
        the log for this member
      • getLicense

        @Deprecated
        java.util.Properties getLicense()
        Deprecated.
        Removed licensing in 8.0.
        Returns the GemFire license this member is using.
        Returns:
        the GemFire license this member is using
      • getVersion

        java.lang.String getVersion()
        Deprecated.
        Returns this member's GemFire version information.
        Returns:
        this member's GemFire version information
      • getConfiguration

        ConfigurationParameter[] getConfiguration()
        Deprecated.
        Gets the configuration parameters for this member.
        Returns:
        the configuration parameters for this member
      • setConfiguration

        ConfigurationParameter[] setConfiguration​(ConfigurationParameter[] parms)
                                           throws AdminException
        Deprecated.
        Sets the configuration of this member. The argument is an array of any and all configuration parameters that are to be updated in the member.

        The entire array of configuration parameters is then returned.

        Parameters:
        parms - subset of the configuration parameters to be changed
        Returns:
        all configuration parameters including those that were changed
        Throws:
        AdminException - if this fails to make the configuration changes
      • refreshConfig

        void refreshConfig()
                    throws AdminException
        Deprecated.
        Refreshes this member's configuration from the member or it's properties
        Throws:
        AdminException - if an exception is encountered
      • getStat

        StatisticResource[] getStat​(java.lang.String statisticsTypeName)
                             throws AdminException
        Deprecated.
        Retrieves this members statistic resources. If the member is not running then an empty array is returned.
        Parameters:
        statisticsTypeName - String ame of the Statistics Type
        Returns:
        array of runtime statistic resources owned by this member
        Throws:
        AdminException - if an exception is encountered
        Since:
        GemFire 5.7
      • getStats

        StatisticResource[] getStats()
                              throws AdminException
        Deprecated.
        Retrieves this members statistic resources. If the member is not running then an empty array is returned. All Stats are returned
        Returns:
        array of runtime statistic resources owned by this member
        Throws:
        AdminException - if an exception is encountered
      • hasCache

        boolean hasCache()
                  throws AdminException
        Deprecated.
        Returns whether or not this system member hosts a GemFire Cache.
        Returns:
        whether this system member hosts a GemFire Cache
        Throws:
        AdminException - if an exception is encountered
        See Also:
        getCache()
      • getCache

        SystemMemberCache getCache()
                            throws AdminException
        Deprecated.
        Returns an object that provides admin access to this member's cache. If the member currently has no cache then null is returned.
        Returns:
        an object that provides admin access to this member's cache
        Throws:
        AdminException - if an exception is encountered
      • getRoles

        java.lang.String[] getRoles()
        Deprecated.
        Returns the names of the membership roles filled by this member.
        Returns:
        array of string membership role names
        Since:
        GemFire 5.0
      • getDistributedMember

        DistributedMember getDistributedMember()
        Deprecated.
        Returns the DistributedMember that represents this system member.
        Returns:
        DistributedMember instance representing this system member
        Since:
        GemFire 5.0