Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 85133200CF0 for ; Sun, 16 Jul 2017 16:28:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8370B1643CA; Sun, 16 Jul 2017 14:28:14 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id AA1601643C4 for ; Sun, 16 Jul 2017 16:28:05 +0200 (CEST) Received: (qmail 34123 invoked by uid 500); 16 Jul 2017 14:28:02 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 33416 invoked by uid 99); 16 Jul 2017 14:28:01 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Jul 2017 14:28:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7AD1BF555E; Sun, 16 Jul 2017 14:28:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: abaker@apache.org To: commits@geode.apache.org Date: Sun, 16 Jul 2017 14:28:34 -0000 Message-Id: <174239b600aa4f9eaa1f8838b58c715e@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [36/51] [abbrv] [partial] geode-site git commit: Update javadocs for 1.2.0 and remove old copies archived-at: Sun, 16 Jul 2017 14:28:14 -0000 http://git-wip-us.apache.org/repos/asf/geode-site/blob/22311e92/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminDistributedSystemFactory.html ---------------------------------------------------------------------- diff --git a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminDistributedSystemFactory.html b/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminDistributedSystemFactory.html deleted file mode 100644 index fcda28f..0000000 --- a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminDistributedSystemFactory.html +++ /dev/null @@ -1,456 +0,0 @@ - - - - - -AdminDistributedSystemFactory (Apache Geode 1.0.0-incubating.M2) - - - - - - - - - - - - -
-
com.gemstone.gemfire.admin
-

Class AdminDistributedSystemFactory

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.gemstone.gemfire.admin.AdminDistributedSystemFactory
    • -
    -
  • -
-
-
    -
  • -
    -
    Deprecated.  -
    as of 7.0 use the management package instead
    -
    -
    -
    public class AdminDistributedSystemFactory
    -extends java.lang.Object
    -
    Factory for creating GemFire administration entities.
    -
    -
    Since:
    -
    3.5
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        AdminDistributedSystemFactory

        -
        public AdminDistributedSystemFactory()
        -
        Deprecated. 
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        bindToAddress

        -
        @Deprecated
        -public static void bindToAddress(java.lang.String bindAddress)
        - -
        Sets the address this VM should bind to when connecting to the distributed - system. This involves a system property, so using this option will limit - all connections to distributed systems to this one network interface. -

        - Using a null or empty bindAddress will clear the usage of this option and - connections to distributed systems will return to using all available - network interfaces. -

        - This method always throws UnsupportedOperationException because it is - now deprecated and is unsafe to use. Please use DistributedSystemConfig.setBindAddress(java.lang.String) instead.

        -
        -
        Parameters:
        -
        bindAddress - machine name or IP address to bind to
        -
        Throws:
        -
        java.lang.UnsupportedOperationException - because of deprecation
        -
        -
      • -
      - - - - - - - -
        -
      • -

        setEnableAdministrationOnly

        -
        public static void setEnableAdministrationOnly(boolean adminOnly)
        -
        Deprecated. 
        -
        Call this method with a value of true - to dedicate the VM to GemFire administration only. - Default is false. -

        This method must be called before calling - AdminDistributedSystem.connect(). It must also be called - before DistributedSystem.connect(java.util.Properties) is when creating a colocated distributed system. -

        - Once it has been enabled be careful to only use GemFire APIs from the - com.gemstone.gemfire.admin package. In particular do not create - a Cache or a normal DistributedSystem.

        -
        -
        Parameters:
        -
        adminOnly - true if this VM should be limited to administration APIs; - false if this VM should allow all GemFire APIs.
        -
        Throws:
        -
        java.lang.IllegalStateException - if a DistributedSystem - or AdminDistributedSystem connection already exists.
        -
        Since:
        -
        5.7
        -
        -
      • -
      - - - -
        -
      • -

        defineDistributedSystem

        -
        public static DistributedSystemConfig defineDistributedSystem(DistributedSystem system,
        -                                                              java.lang.String remoteCommand)
        -                                                       throws AdminException
        -
        Deprecated. 
        -
        Defines a distributed system configuration for administering the - distributed system to which this VM is currently connected. The - DistributedSystem is used to configure the discovery - mechanism (multicast or locators), bind address, SSL attributes, - as well as the logger of the - DistributedSystemConfig. Note that the distributed - system will not be able to be administered until the connect method is invoked.
        -
        -
        Parameters:
        -
        system - A connection to the distributed system
        -
        remoteCommand - The shell command that is used to launch processes that - run on remote machines. If null, then the - default will be used.
        -
        Throws:
        -
        AdminException
        -
        Since:
        -
        4.0
        -
        -
      • -
      - - - -
        -
      • -

        getDistributedSystem

        -
        public static AdminDistributedSystem getDistributedSystem(DistributedSystemConfig config)
        -
        Deprecated. 
        -
        Returns the distributed system for administrative monitoring and - managing. You must then call AdminDistributedSystem.connect() before interacting with the - actual system.
        -
        -
        Parameters:
        -
        config - configuration definition of the system to administer
        -
        Returns:
        -
        administrative interface for a distributed system
        -
        -
      • -
      - - - -
        -
      • -

        getLogWriter

        -
        public static LogWriterI18n getLogWriter()
        -
        Deprecated. 
        -
        Returns a default GemFire LogWriterI18n for logging. This LogWriterI18n will - log to standard out.
        -
        -
        Returns:
        -
        a GemFire LogWriterI18n for logging
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - http://git-wip-us.apache.org/repos/asf/geode-site/blob/22311e92/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminException.html ---------------------------------------------------------------------- diff --git a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminException.html b/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminException.html deleted file mode 100644 index 48e5613..0000000 --- a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminException.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - -AdminException (Apache Geode 1.0.0-incubating.M2) - - - - - - - - - - - - -
-
com.gemstone.gemfire.admin
-

Class AdminException

-
-
- -
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      AdminException() -
      Deprecated. 
      -
      Constructs a new exception with null as its detail message.
      -
      AdminException(java.lang.String message) -
      Deprecated. 
      -
      Constructs a new exception with the specified detail message.
      -
      AdminException(java.lang.String message, - java.lang.Throwable cause) -
      Deprecated. 
      -
      Constructs a new exception with the specified detail message and - cause.
      -
      AdminException(java.lang.Throwable cause) -
      Deprecated. 
      -
      Constructs a new exception with the specified cause.
      -
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - -
        -
      • - - -

        Methods inherited from class java.lang.Throwable

        -addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        AdminException

        -
        public AdminException()
        -
        Deprecated. 
        -
        Constructs a new exception with null as its detail message. - The cause is not initialized, and may subsequently be initialized by a - call to Throwable.initCause(java.lang.Throwable).
        -
      • -
      - - - -
        -
      • -

        AdminException

        -
        public AdminException(java.lang.String message)
        -
        Deprecated. 
        -
        Constructs a new exception with the specified detail message. The - cause is not initialized, and may subsequently be initialized by - a call to Throwable.initCause(java.lang.Throwable).
        -
        -
        Parameters:
        -
        message - the detail message. The detail message is saved for - later retrieval by the Throwable.getMessage() method.
        -
        -
      • -
      - - - -
        -
      • -

        AdminException

        -
        public AdminException(java.lang.String message,
        -                      java.lang.Throwable cause)
        -
        Deprecated. 
        -
        Constructs a new exception with the specified detail message and - cause.

        Note that the detail message associated with - cause is not automatically incorporated in - this exception's detail message.

        -
        -
        Parameters:
        -
        message - the detail message (which is saved for later retrieval - by the Throwable.getMessage() method).
        -
        cause - the cause (which is saved for later retrieval by the - Throwable.getCause() method). (A null value is - permitted, and indicates that the cause is nonexistent or - unknown.)
        -
        -
      • -
      - - - -
        -
      • -

        AdminException

        -
        public AdminException(java.lang.Throwable cause)
        -
        Deprecated. 
        -
        Constructs a new exception with the specified cause. - The detail - message will be (cause==null ? null : cause.toString()) (which - typically contains the class and detail message of cause). - This constructor is useful for exceptions that are little more than - wrappers for other throwables (for example, PrivilegedActionException).
        -
        -
        Parameters:
        -
        cause - the cause (which is saved for later retrieval by the - Throwable.getCause() method). (A null value is - permitted, and indicates that the cause is nonexistent or - unknown.)
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - http://git-wip-us.apache.org/repos/asf/geode-site/blob/22311e92/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminXmlException.html ---------------------------------------------------------------------- diff --git a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminXmlException.html b/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminXmlException.html deleted file mode 100644 index cfc312e..0000000 --- a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AdminXmlException.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - -AdminXmlException (Apache Geode 1.0.0-incubating.M2) - - - - - - - - - - - - -
-
com.gemstone.gemfire.admin
-

Class AdminXmlException

-
-
- -
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      AdminXmlException(java.lang.String s) -
      Deprecated. 
      -
      Creates a new AdminXmlException with the given - descriptive message.
      -
      AdminXmlException(java.lang.String s, - java.lang.Throwable cause) -
      Deprecated. 
      -
      Creates a new AdminXmlException with the given - descriptive message and cause.
      -
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - -
        -
      • - - -

        Methods inherited from class java.lang.Throwable

        -addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • -
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        AdminXmlException

        -
        public AdminXmlException(java.lang.String s)
        -
        Deprecated. 
        -
        Creates a new AdminXmlException with the given - descriptive message.
        -
      • -
      - - - -
        -
      • -

        AdminXmlException

        -
        public AdminXmlException(java.lang.String s,
        -                         java.lang.Throwable cause)
        -
        Deprecated. 
        -
        Creates a new AdminXmlException with the given - descriptive message and cause.
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - http://git-wip-us.apache.org/repos/asf/geode-site/blob/22311e92/releases/10M2/javadoc/com/gemstone/gemfire/admin/Alert.html ---------------------------------------------------------------------- diff --git a/releases/10M2/javadoc/com/gemstone/gemfire/admin/Alert.html b/releases/10M2/javadoc/com/gemstone/gemfire/admin/Alert.html deleted file mode 100644 index 508c5b5..0000000 --- a/releases/10M2/javadoc/com/gemstone/gemfire/admin/Alert.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - -Alert (Apache Geode 1.0.0-incubating.M2) - - - - - - - - - - - - -
-
com.gemstone.gemfire.admin
-

Interface Alert

-
-
-
-
    -
  • -
    -
    Deprecated.  -
    as of 7.0 use the management package instead
    -
    -
    -
    public interface Alert
    -
    An administration alert that is issued by a member of a GemFire - distributed system. It is similar to a log message.
    -
    -
    Since:
    -
    3.5
    -
    See Also:
    -
    AlertListener
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetConnectionName() -
      Deprecated. 
      -
      The name of the distributed system) through which the alert was issued.
      -
      java.util.DategetDate() -
      Deprecated. 
      -
      The time at which the alert was issued
      -
      AlertLevelgetLevel() -
      Deprecated. 
      -
      The level at which this alert is issued
      -
      java.lang.StringgetMessage() -
      Deprecated. 
      -
      The alert's message
      -
      java.lang.StringgetSourceId() -
      Deprecated. 
      -
      The id of the source of the alert (such as a thread in a VM)
      -
      SystemMembergetSystemMember() -
      Deprecated. 
      -
      The member of the distributed system that issued the alert, or - null if the issuer is no longer a member of the distributed system.
      -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getLevel

        -
        AlertLevel getLevel()
        -
        Deprecated. 
        -
        The level at which this alert is issued
        -
      • -
      - - - -
        -
      • -

        getSystemMember

        -
        SystemMember getSystemMember()
        -
        Deprecated. 
        -
        The member of the distributed system that issued the alert, or - null if the issuer is no longer a member of the distributed system.
        -
      • -
      - - - -
        -
      • -

        getConnectionName

        -
        java.lang.String getConnectionName()
        -
        Deprecated. 
        -
        The name of the distributed system) through which the alert was issued.
        -
      • -
      - - - -
        -
      • -

        getSourceId

        -
        java.lang.String getSourceId()
        -
        Deprecated. 
        -
        The id of the source of the alert (such as a thread in a VM)
        -
      • -
      - - - -
        -
      • -

        getMessage

        -
        java.lang.String getMessage()
        -
        Deprecated. 
        -
        The alert's message
        -
      • -
      - - - -
        -
      • -

        getDate

        -
        java.util.Date getDate()
        -
        Deprecated. 
        -
        The time at which the alert was issued
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - - http://git-wip-us.apache.org/repos/asf/geode-site/blob/22311e92/releases/10M2/javadoc/com/gemstone/gemfire/admin/AlertLevel.html ---------------------------------------------------------------------- diff --git a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AlertLevel.html b/releases/10M2/javadoc/com/gemstone/gemfire/admin/AlertLevel.html deleted file mode 100644 index bec757d..0000000 --- a/releases/10M2/javadoc/com/gemstone/gemfire/admin/AlertLevel.html +++ /dev/null @@ -1,529 +0,0 @@ - - - - - -AlertLevel (Apache Geode 1.0.0-incubating.M2) - - - - - - - - - - - - -
-
com.gemstone.gemfire.admin
-

Class AlertLevel

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.gemstone.gemfire.admin.AlertLevel
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable
    -
    -
    -
    Deprecated.  -
    as of 7.0 use the management package instead
    -
    -
    -
    public class AlertLevel
    -extends java.lang.Object
    -implements java.io.Serializable
    -
    Type-safe enumeration for Alert level.
    -
    -
    Since:
    -
    3.5
    -
    See Also:
    -
    Serialized Form
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static AlertLevelERROR -
      Deprecated. 
      static AlertLevelOFF -
      Deprecated. 
      intordinal -
      Deprecated. 
      -
      int used as ordinal to represent this AlertLevel
      -
      static AlertLevelSEVERE -
      Deprecated. 
      static AlertLevelWARNING -
      Deprecated. 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object other) -
      Deprecated. 
      -
      Indicates whether some other object is "equal to" this one.
      -
      static AlertLevelforName(java.lang.String name) -
      Deprecated. 
      -
      Returns the AlertLevel with the given name
      -
      static AlertLevelforSeverity(int severity) -
      Deprecated. 
      -
      Returns the AlertLevel for the given severity
      -
      static AlertLevelfromOrdinal(int ordinal) -
      Deprecated. 
      -
      Return the AlertLevel represented by specified ordinal
      -
      java.lang.StringgetName() -
      Deprecated. 
      intgetSeverity() -
      Deprecated. 
      inthashCode() -
      Deprecated. 
      -
      Returns a hash code for the object.
      -
      java.lang.StringtoString() -
      Deprecated. 
      -
      Returns a string representation for this alert level.
      -
      static AlertLevel[]values() -
      Deprecated. 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Field Detail

      - - - -
        -
      • -

        WARNING

        -
        public static final AlertLevel WARNING
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        ERROR

        -
        public static final AlertLevel ERROR
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        SEVERE

        -
        public static final AlertLevel SEVERE
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        OFF

        -
        public static final AlertLevel OFF
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        ordinal

        -
        public final int ordinal
        -
        Deprecated. 
        -
        int used as ordinal to represent this AlertLevel
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        fromOrdinal

        -
        public static AlertLevel fromOrdinal(int ordinal)
        -
        Deprecated. 
        -
        Return the AlertLevel represented by specified ordinal
        -
      • -
      - - - -
        -
      • -

        forSeverity

        -
        public static AlertLevel forSeverity(int severity)
        -
        Deprecated. 
        -
        Returns the AlertLevel for the given severity
        -
        -
        Throws:
        -
        java.lang.IllegalArgumentException - If there is no alert level with the given - severity
        -
        -
      • -
      - - - -
        -
      • -

        forName

        -
        public static AlertLevel forName(java.lang.String name)
        -
        Deprecated. 
        -
        Returns the AlertLevel with the given name
        -
        -
        Throws:
        -
        java.lang.IllegalArgumentException - If there is no alert level named name
        -
        -
      • -
      - - - -
        -
      • -

        getSeverity

        -
        public int getSeverity()
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        getName

        -
        public java.lang.String getName()
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        values

        -
        public static AlertLevel[] values()
        -
        Deprecated. 
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Deprecated. 
        -
        Returns a string representation for this alert level.
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        the name of this alert level
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object other)
        -
        Deprecated. 
        -
        Indicates whether some other object is "equal to" this one.
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        Parameters:
        -
        other - the reference object with which to compare.
        -
        Returns:
        -
        true if this object is the same as the obj argument; - false otherwise.
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        Deprecated. 
        -
        Returns a hash code for the object. This method is supported for the - benefit of hashtables such as those provided by java.util.Hashtable.
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        Returns:
        -
        the integer 0 if description is null; otherwise a unique integer.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - - -