Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-164v2 12c06f699 -> 86ab8e207


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/scalar/src/main/scala/org/apache/ignite/scalar/scalar.scala
----------------------------------------------------------------------
diff --git 
a/modules/scalar/src/main/scala/org/apache/ignite/scalar/scalar.scala 
b/modules/scalar/src/main/scala/org/apache/ignite/scalar/scalar.scala
index 4054952..d65611b 100644
--- a/modules/scalar/src/main/scala/org/apache/ignite/scalar/scalar.scala
+++ b/modules/scalar/src/main/scala/org/apache/ignite/scalar/scalar.scala
@@ -43,20 +43,20 @@ import scala.annotation.meta.field
  * ==Overview==
  * `scalar` is the main object that encapsulates Scalar DSL. It includes 
global functions
  * on "scalar" keyword, helper converters as well as necessary implicit 
conversions. `scalar` also
- * mimics many methods in `GridGain` class from Java side.
+ * mimics many methods in `Ignite` class from Java side.
  *
  * The idea behind Scalar DSL - '''zero additional logic and only 
conversions''' implemented
  * using Scala "Pimp" pattern. Note that most of the Scalar DSL development 
happened on Java
- * side of GridGain 3.0 product line - Java APIs had to be adjusted quite 
significantly to
+ * side of Ignite 3.0 product line - Java APIs had to be adjusted quite 
significantly to
  * support natural adaptation of functional APIs. That basically means that 
all functional
  * logic must be available on Java side and Scalar only provides conversions 
from Scala
- * language constructs to Java constructs. Note that currently GridGain 
supports Scala 2.8
+ * language constructs to Java constructs. Note that currently Ignite supports 
Scala 2.8
  * and up only.
  *
  * This design approach ensures that Java side does not starve and usage 
paradigm
  * is mostly the same between Java and Scala - yet with full power of Scala 
behind.
  * In other words, Scalar only adds Scala specifics, but not greatly altering 
semantics
- * of how GridGain APIs work. Most of the time the code in Scalar can be 
written in
+ * of how Ignite APIs work. Most of the time the code in Scalar can be written 
in
  * Java in almost the same number of lines.
  *
  * ==Suffix '$' In Names==
@@ -77,10 +77,10 @@ import scala.annotation.meta.field
  *
  * ==Examples==
  * Here are few short examples of how Scalar can be used to program routine 
distributed
- * task. All examples below use default GridGain configuration and default 
grid. All these
+ * task. All examples below use default Ignite configuration and default grid. 
All these
  * examples take an implicit advantage of auto-discovery and failover, load 
balancing and
  * collision resolution, zero deployment and many other underlying 
technologies in the
- * GridGain - while remaining absolutely distilled to the core domain logic.
+ * Ignite - while remaining absolutely distilled to the core domain logic.
  *
  * This code snippet prints out full topology:
  * <pre name="code" class="scala">

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/scalar/src/test/resources/spring-ping-pong-partner.xml
----------------------------------------------------------------------
diff --git a/modules/scalar/src/test/resources/spring-ping-pong-partner.xml 
b/modules/scalar/src/test/resources/spring-ping-pong-partner.xml
index 5801394..1339202 100644
--- a/modules/scalar/src/test/resources/spring-ping-pong-partner.xml
+++ b/modules/scalar/src/test/resources/spring-ping-pong-partner.xml
@@ -18,7 +18,7 @@
   -->
 
 <!--
-    GridGain Spring configuration file for testing ping pong example.
+    Ignite Spring configuration file for testing ping pong example.
 -->
 <beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
@@ -81,7 +81,7 @@
             <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
                 <property name="ipFinder">
                     <!--
-                        GridGain provides several options for automatic 
discovery that can be used
+                        Ignite provides several options for automatic 
discovery that can be used
                         instead os static IP based discovery. For information 
on all options refer
                         to our documentation: 
http://doc.gridgain.org/latest/Automatic+Node+Discovery
                     -->

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/slf4j/src/main/java/org/apache/ignite/logger/slf4j/GridSlf4jLogger.java
----------------------------------------------------------------------
diff --git 
a/modules/slf4j/src/main/java/org/apache/ignite/logger/slf4j/GridSlf4jLogger.java
 
b/modules/slf4j/src/main/java/org/apache/ignite/logger/slf4j/GridSlf4jLogger.java
index 76d37d9..eba5d7d 100644
--- 
a/modules/slf4j/src/main/java/org/apache/ignite/logger/slf4j/GridSlf4jLogger.java
+++ 
b/modules/slf4j/src/main/java/org/apache/ignite/logger/slf4j/GridSlf4jLogger.java
@@ -25,14 +25,14 @@ import org.slf4j.*;
  * SLF4J-based implementation for logging. This logger should be used
  * by loaders that have prefer slf4j-based logging.
  * <p>
- * Here is an example of configuring SLF4J logger in GridGain configuration 
Spring file:
+ * Here is an example of configuring SLF4J logger in Ignite configuration 
Spring file:
  * <pre name="code" class="xml">
  *      &lt;property name="gridLogger"&gt;
  *          &lt;bean 
class="org.apache.ignite.logger.slf4j.GridSlf4jLogger"/&gt;
  *      &lt;/property&gt;
  * </pre>
  * <p>
- * It's recommended to use GridGain's logger injection instead of 
using/instantiating
+ * It's recommended to use Ignite's logger injection instead of 
using/instantiating
  * logger in your task/job code. See {@link 
org.apache.ignite.resources.IgniteLoggerResource} annotation about logger
  * injection.
  */

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/spring/src/main/java/org/apache/ignite/IgniteSpring.java
----------------------------------------------------------------------
diff --git a/modules/spring/src/main/java/org/apache/ignite/IgniteSpring.java 
b/modules/spring/src/main/java/org/apache/ignite/IgniteSpring.java
index 55e8017..c698a90 100644
--- a/modules/spring/src/main/java/org/apache/ignite/IgniteSpring.java
+++ b/modules/spring/src/main/java/org/apache/ignite/IgniteSpring.java
@@ -30,7 +30,7 @@ import java.net.*;
  * grid tasks and grid jobs using {@link 
org.apache.ignite.resources.IgniteSpringApplicationContextResource 
@IgniteSpringApplicationContextResource}
  * annotation.
  * <p>
- * You can also instantiate grid directly from Spring without using {@code 
GridGain}.
+ * You can also instantiate grid directly from Spring without using {@code 
Ignite}.
  * For more information refer to {@link IgniteSpringBean} documentation.
  */
 public class IgniteSpring {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringCacheManager.java
----------------------------------------------------------------------
diff --git 
a/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringCacheManager.java
 
b/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringCacheManager.java
index a0192cc..2f26b47 100644
--- 
a/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringCacheManager.java
+++ 
b/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringCacheManager.java
@@ -28,7 +28,7 @@ import org.springframework.cache.CacheManager;
 import java.util.*;
 
 /**
- * Implementation of Spring cache abstraction based on GridGain cache.
+ * Implementation of Spring cache abstraction based on Ignite cache.
  * <h1 class="header">Overview</h1>
  * Spring cache abstraction allows to enable caching for Java methods
  * so that the result of a method execution is stored in some storage. If
@@ -38,11 +38,11 @@ import java.util.*;
  * <a 
href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html";>
  * Spring Cache Abstraction documentation</a>.
  * <h1 class="header">How To Enable Caching</h1>
- * To enable caching based on GridGain cache in your Spring application,
+ * To enable caching based on Ignite cache in your Spring application,
  * you will need to do the following:
  * <ul>
  *     <li>
- *         Start a GridGain node with configured cache in the same JVM
+ *         Start a Ignite node with configured cache in the same JVM
  *         where you application is running.
  *     </li>
  *     <li>
@@ -51,7 +51,7 @@ import java.util.*;
  *     </li>
  * </ul>
  * {@code GridSpringCacheManager} can start a node itself on its startup
- * based on provided GridGain configuration. You can provide path to a
+ * based on provided Ignite configuration. You can provide path to a
  * Spring configuration XML file, like below (path can be absolute or
  * relative to {@code IGNITE_HOME}):
  * <pre name="code" class="xml">
@@ -94,7 +94,7 @@ import java.util.*;
  * Note that providing both configuration path and configuration bean is 
illegal
  * and results in {@link IllegalArgumentException}.
  * <p>
- * If you already have GridGain node running within your application,
+ * If you already have Ignite node running within your application,
  * simply provide correct Grid name, like below (if there is no Grid
  * instance with such name, exception will be thrown):
  * <pre name="code" class="xml">
@@ -126,7 +126,7 @@ import java.util.*;
  * Remember that the node started inside your application is an entry point
  * to the whole topology it connects to. You can start as many remote 
standalone
  * nodes as you need using {@code bin/ignite.{sh|bat}} scripts provided in
- * GridGain distribution, and all these nodes will participate
+ * Ignite distribution, and all these nodes will participate
  * in caching data.
  */
 public class SpringCacheManager implements CacheManager, InitializingBean {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringDynamicCacheManager.java
----------------------------------------------------------------------
diff --git 
a/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringDynamicCacheManager.java
 
b/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringDynamicCacheManager.java
index 377bcd0..a2f572b 100644
--- 
a/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringDynamicCacheManager.java
+++ 
b/modules/spring/src/main/java/org/apache/ignite/cache/spring/SpringDynamicCacheManager.java
@@ -34,22 +34,22 @@ import java.util.*;
  * Extension of {@link SpringCacheManager} that adds an option to
  * emulate dynamic cache creation for you Spring-based applications.
  * <p>
- * All the data will be actually cached in one GridGain cache. It's
+ * All the data will be actually cached in one Ignite cache. It's
  * name should be provided to this cache manager via
  * {@link #setDataCacheName(String)} configuration property.
  * <p>
  * Under the hood, this cache manager will create a cache projection
  * for each cache name provided in {@link Cacheable}, {@link CachePut},
  * etc. annotations. Note that you're still able to use caches configured in
- * GridGain configuration. Cache projection will be created only
+ * Ignite configuration. Cache projection will be created only
  * cache with provided name doesn't exist.
  * <h1 class="header">Configuration</h1>
  * {@link SpringDynamicCacheManager} inherits all configuration
  * properties from {@link SpringCacheManager} (see it's JavaDoc
- * for more information on how to enable GridGain-based caching in
+ * for more information on how to enable Ignite-based caching in
  * a Spring application).
  * <p>
- * Additionally you will need to set a GridGain cache name where the data for
+ * Additionally you will need to set a Ignite cache name where the data for
  * all dynamically created caches will be stored. By default its name
  * is {@code null}, which refers to default cache. Here is the example
  * of how to configure a named cache:

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/GridNodeCallableImpl.java
----------------------------------------------------------------------
diff --git 
a/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/GridNodeCallableImpl.java
 
b/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/GridNodeCallableImpl.java
index 044d11e..a135094 100644
--- 
a/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/GridNodeCallableImpl.java
+++ 
b/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/GridNodeCallableImpl.java
@@ -35,10 +35,10 @@ import static org.apache.ignite.IgniteSystemProperties.*;
  * SSH-based node starter.
  */
 public class GridNodeCallableImpl implements GridNodeCallable {
-    /** Default GridGain home path for Windows (taken from environment 
variable). */
+    /** Default Ignite home path for Windows (taken from environment 
variable). */
     private static final String DFLT_IGNITE_HOME_WIN = "%IGNITE_HOME%";
 
-    /** Default GridGain home path for Linux (taken from environment 
variable). */
+    /** Default Ignite home path for Linux (taken from environment variable). 
*/
     private static final String DFLT_IGNITE_HOME_LINUX = "$IGNITE_HOME";
 
     /** Default start script path for Windows. */

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/ssh/src/test/java/org/apache/ignite/internal/GridProjectionStartStopRestartSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/ssh/src/test/java/org/apache/ignite/internal/GridProjectionStartStopRestartSelfTest.java
 
b/modules/ssh/src/test/java/org/apache/ignite/internal/GridProjectionStartStopRestartSelfTest.java
index 20c52d5..3be64ad 100644
--- 
a/modules/ssh/src/test/java/org/apache/ignite/internal/GridProjectionStartStopRestartSelfTest.java
+++ 
b/modules/ssh/src/test/java/org/apache/ignite/internal/GridProjectionStartStopRestartSelfTest.java
@@ -927,7 +927,7 @@ public class GridProjectionStartStopRestartSelfTest extends 
GridCommonAbstractTe
      * @param passwd Password.
      * @param key Private key file.
      * @param nodes Number of nodes.
-     * @param ggHome GridGain home.
+     * @param ggHome Ignite home.
      * @param cfg Configuration file path.
      * @param script Startup script path.
      * @return Parameters map.
@@ -963,7 +963,7 @@ public class GridProjectionStartStopRestartSelfTest extends 
GridCommonAbstractTe
      * @param passwd Password.
      * @param key Private key file.
      * @param nodes Number of nodes.
-     * @param ggHome GridGain home.
+     * @param ggHome Ignite home.
      * @param cfg Configuration file path.
      * @param script Startup script path.
      * @return Parameters map.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/tools/src/main/java/org/apache/ignite/tools/javadoc/IgniteLinkTaglet.java
----------------------------------------------------------------------
diff --git 
a/modules/tools/src/main/java/org/apache/ignite/tools/javadoc/IgniteLinkTaglet.java
 
b/modules/tools/src/main/java/org/apache/ignite/tools/javadoc/IgniteLinkTaglet.java
index 077f3c5..06aab1f 100644
--- 
a/modules/tools/src/main/java/org/apache/ignite/tools/javadoc/IgniteLinkTaglet.java
+++ 
b/modules/tools/src/main/java/org/apache/ignite/tools/javadoc/IgniteLinkTaglet.java
@@ -25,7 +25,7 @@ import java.util.*;
 
 /**
  * Represents {@ignitelink ...} tag. This tag can
- * be used as replacement of {@link ...} tag that references to the GridGain 
class that is not in classpath.
+ * be used as replacement of {@link ...} tag that references to the Ignite 
class that is not in classpath.
  * Class and its arguments should have fully qualified names.
  */
 public class IgniteLinkTaglet implements Taglet {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/tools/src/main/java/org/apache/ignite/tools/marshaller/optimized/OptimizedClassNamesGenerator.java
----------------------------------------------------------------------
diff --git 
a/modules/tools/src/main/java/org/apache/ignite/tools/marshaller/optimized/OptimizedClassNamesGenerator.java
 
b/modules/tools/src/main/java/org/apache/ignite/tools/marshaller/optimized/OptimizedClassNamesGenerator.java
index 30ecbdb..12dacb2 100644
--- 
a/modules/tools/src/main/java/org/apache/ignite/tools/marshaller/optimized/OptimizedClassNamesGenerator.java
+++ 
b/modules/tools/src/main/java/org/apache/ignite/tools/marshaller/optimized/OptimizedClassNamesGenerator.java
@@ -35,10 +35,10 @@ import java.util.jar.*;
  * It {@code should NOT} have any {@code 'test'} modules in the class path.
  */
 public class OptimizedClassNamesGenerator {
-    /** Defines GridGain installation folder. */
+    /** Defines Ignite installation folder. */
     public static final String IGNITE_HOME_SYS_PROP = "IGNITE_HOME";
 
-    /** Defines GridGain installation folder.  */
+    /** Defines Ignite installation folder.  */
     public static final String IGNITE_HOME_ENV_VAR = "IGNITE_HOME";
 
     /** File name to generate. */
@@ -208,7 +208,7 @@ public class OptimizedClassNamesGenerator {
      * @param cls Class.
      */
     private void checkSerialVersionUid(Class cls) {
-        // Check only GridGain classes.
+        // Check only Ignite classes.
         if (cls.isEnum() || cls.getSimpleName().isEmpty() || 
(!cls.getName().startsWith("org.gridgain.grid") &&
             !cls.getName().startsWith("org.gridgain.client") && 
!cls.getName().startsWith("org.apache.ignite")))
             return;

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/tools/src/main/java/org/apache/ignite/util/antgar/IgniteDeploymentGarAntTask.java
----------------------------------------------------------------------
diff --git 
a/modules/tools/src/main/java/org/apache/ignite/util/antgar/IgniteDeploymentGarAntTask.java
 
b/modules/tools/src/main/java/org/apache/ignite/util/antgar/IgniteDeploymentGarAntTask.java
index 9c53fd7..1f750df 100644
--- 
a/modules/tools/src/main/java/org/apache/ignite/util/antgar/IgniteDeploymentGarAntTask.java
+++ 
b/modules/tools/src/main/java/org/apache/ignite/util/antgar/IgniteDeploymentGarAntTask.java
@@ -31,7 +31,7 @@ import java.io.*;
  * <li>{@code basedir} - Base directory for GAR archive.</li>
  * <li>
  *      {@code descrdir} - Directory where descriptor {@link #DESC_NAME} file 
is located.
- *      If not specified, it is assumed that GridGain descriptor will be 
searched in base directory
+ *      If not specified, it is assumed that Ignite descriptor will be 
searched in base directory
  *      (see {@link #setBasedir(File)}). <b>Note</b> further that GAR 
descriptor file is fully optional
  *      itself for GAR archive.
  * </li>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentFileProcessorSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentFileProcessorSelfTest.java
 
b/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentFileProcessorSelfTest.java
index 0e05389..78dba7a 100644
--- 
a/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentFileProcessorSelfTest.java
+++ 
b/modules/urideploy/src/test/java/org/apache/ignite/spi/deployment/uri/GridUriDeploymentFileProcessorSelfTest.java
@@ -62,7 +62,7 @@ public class GridUriDeploymentFileProcessorSelfTest extends 
GridUriDeploymentAbs
 
     /**
      * @param garFileName Name of .gar file.
-     * @param garDescFileName Name of GridGain descriptor file.
+     * @param garDescFileName Name of Ignite descriptor file.
      * @param taskId Task id.
      * @param deployed If {@code true} then givent task should be deployed 
after test,
      *      if {@code false} then it should be undeployed.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/Packet.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/Packet.scala 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/Packet.scala
index 3aefa2a..bee86ae 100644
--- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/Packet.scala
+++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/Packet.scala
@@ -28,10 +28,10 @@ package org.apache.ignite
  * }}}
  *
  * ==Overview==
- * Visor console provides monitoring capabilities for GridGain.
+ * Visor console provides monitoring capabilities for Ignite.
  *
  * ==Usage==
- * GridGain ships with `IGNITE_HOME/bin/ignitevisorcmd.{sh|bat}` script that 
starts Visor console.
+ * Ignite ships with `IGNITE_HOME/bin/ignitevisorcmd.{sh|bat}` script that 
starts Visor console.
  *
  * Just type:<ex>help</ex> in Visor console to get help and get started.
  */

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/alert/VisorAlertCommand.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/alert/VisorAlertCommand.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/alert/VisorAlertCommand.scala
index 8b74782..edbcdcb 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/alert/VisorAlertCommand.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/alert/VisorAlertCommand.scala
@@ -71,7 +71,7 @@ import scala.util.control.Breaks._
  *         Note that only one of the '-u' or '-r' is allowed.
  *         If neither '-u' or '-r' provided - all alerts will be printed.
  *
- *         NOTE: Email settings can be specified in GridGain configu
+ *         NOTE: Email settings can be specified in Ignite configu
  *         Email notification will be sent for the alert only
  *         provided mnemonic predicates evaluate to 'true'."
  *     -t

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/Packet.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/Packet.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/Packet.scala
index eb925f8..b6257d7 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/Packet.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/Packet.scala
@@ -27,14 +27,14 @@ package org.apache.ignite.visor.commands
  * | disco | Prints topology change log as seen from the oldest node.          
            |
  * |       | Timeframe for quering events can be specified in arguments.       
            |
  * |       |                                                                   
            |
- * |       | Note that this command depends on GridGain events.                
            |
+ * |       | Note that this command depends on Ignite events.                  
          |
  * |       |                                                                   
            |
- * |       | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |       | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |       | can affect the results produced by this command. Note also that 
configuration |
  * |       | of Event Storage SPI that is responsible for temporary storage of 
generated   |
  * |       | events on each node can also affect the functionality of this 
command.        |
  * |       |                                                                   
            |
- * |       | By default - all events are enabled and GridGain stores last 
10,000 local     |
+ * |       | By default - all events are enabled and Ignite stores last 10,000 
local     |
  * |       | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+---------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/VisorDiscoveryCommand.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/VisorDiscoveryCommand.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/VisorDiscoveryCommand.scala
index fc0f35d..f7226f2 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/VisorDiscoveryCommand.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/disco/VisorDiscoveryCommand.scala
@@ -46,14 +46,14 @@ import scala.language.{implicitConversions, reflectiveCalls}
  * | disco | Prints topology change log as seen from the oldest node.          
            |
  * |       | Timeframe for querying events can be specified in arguments.      
             |
  * |       |                                                                   
            |
- * |       | Note that this command depends on GridGain events.                
            |
+ * |       | Note that this command depends on Ignite events.                  
          |
  * |       |                                                                   
            |
- * |       | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |       | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |       | can affect the results produced by this command. Note also that 
configuration |
  * |       | of Event Storage SPI that is responsible for temporary storage of 
generated   |
  * |       | events on each node can also affect the functionality of this 
command.        |
  * |       |                                                                   
            |
- * |       | By default - all events are DISABLED and GridGain stores last 
10,000 local     |
+ * |       | By default - all events are DISABLED and Ignite stores last 
10,000 local     |
  * |       | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+---------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/Packet.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/Packet.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/Packet.scala
index d21f5a3..b4f0546 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/Packet.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/Packet.scala
@@ -26,14 +26,14 @@ package org.apache.ignite.visor.commands
  * 
+----------------------------------------------------------------------------------------+
  * | events | Print events from a node.                                        
             |
  * |        |                                                                  
             |
- * |        | Note that this command depends on GridGain events.               
             |
+ * |        | Note that this command depends on Ignite events.                 
           |
  * |        |                                                                  
             |
- * |        | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |        | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |        | can affect the results produced by this command. Note also that 
configuration |
  * |        | of Event Storage SPI that is responsible for temporary storage 
of generated   |
  * |        | events on each node can also affect the functionality of this 
command.        |
  * |        |                                                                  
             |
- * |        | By default - all events are enabled and GridGain stores last 
10,000 local     |
+ * |        | By default - all events are enabled and Ignite stores last 
10,000 local     |
  * |        | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+----------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/VisorEventsCommand.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/VisorEventsCommand.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/VisorEventsCommand.scala
index 21d02d0..22a1156 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/VisorEventsCommand.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/events/VisorEventsCommand.scala
@@ -46,14 +46,14 @@ import scala.language.implicitConversions
  * 
+----------------------------------------------------------------------------------------+
  * | events | Prints events from a node.                                       
              |
  * |        |                                                                  
             |
- * |        | Note that this command depends on GridGain events.               
             |
+ * |        | Note that this command depends on Ignite events.                 
           |
  * |        |                                                                  
             |
- * |        | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |        | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |        | can affect the results produced by this command. Note also that 
configuration |
  * |        | of Event Storage SPI that is responsible for temporary storage 
of generated   |
  * |        | events on each node can also affect the functionality of this 
command.        |
  * |        |                                                                  
             |
- * |        | By default - all events are DISABLED and GridGain stores last 
10,000 local     |
+ * |        | By default - all events are DISABLED and Ignite stores last 
10,000 local     |
  * |        | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+----------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/Packet.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/Packet.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/Packet.scala
index 457f201..55eb836 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/Packet.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/Packet.scala
@@ -59,13 +59,13 @@ package org.apache.ignite.visor.commands
  *         If some nodes are started already, then only remaining nodes will 
be started.
  *         If current count of nodes is equal to this number and '-r' flag is 
not set, then nothing will happen.
  *     -g=<path>
- *         Path to GridGain installation folder.
+ *         Path to Ignite installation folder.
  *         If not defined, IGNITE_HOME environment variable must be set on 
remote hosts.
  *     -c=<path>
- *         Path to configuration file (relative to GridGain home).
- *         If not provided, default GridGain configuration is used.
+ *         Path to configuration file (relative to Ignite home).
+ *         If not provided, default Ignite configuration is used.
  *     -s=<path>
- *         Path to start script (relative to GridGain home).
+ *         Path to start script (relative to Ignite home).
  *         Default is "bin/ignite.sh" for Unix or
  *         "bin\ignite.bat" for Windows.
  *     -m=<num>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/VisorStartCommand.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/VisorStartCommand.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/VisorStartCommand.scala
index 69d68fd..9e7abae 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/VisorStartCommand.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/start/VisorStartCommand.scala
@@ -85,13 +85,13 @@ private case class Result(
  *         If some nodes are started already, then only remaining nodes will 
be started.
  *         If current count of nodes is equal to this number and '-r' flag is 
not set, then nothing will happen.
  *     -g=<path>
- *         Path to GridGain installation folder.
+ *         Path to Ignite installation folder.
  *         If not defined, IGNITE_HOME environment variable must be set on 
remote hosts.
  *     -c=<path>
- *         Path to configuration file (relative to GridGain home).
- *         If not provided, default GridGain configuration is used.
+ *         Path to configuration file (relative to Ignite home).
+ *         If not provided, default Ignite configuration is used.
  *     -s=<path>
- *         Path to start script (relative to GridGain home).
+ *         Path to start script (relative to Ignite home).
  *         Default is "bin/ignite.sh" for Unix or
  *         "bin\ignite.bat" for Windows.
  *     -m=<num>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/Packet.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/Packet.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/Packet.scala
index de5b9b0..ad35e06 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/Packet.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/Packet.scala
@@ -26,14 +26,14 @@ package org.apache.ignite.visor.commands
  * 
+---------------------------------------------------------------------------------------+
  * | tasks | Prints statistics about tasks and executions.                     
            |
  * |       |                                                                   
            |
- * |       | Note that this command depends on GridGain events.                
            |
+ * |       | Note that this command depends on Ignite events.                  
          |
  * |       |                                                                   
            |
- * |       | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |       | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |       | can affect the results produced by this command. Note also that 
configuration |
  * |       | of Event Storage SPI that is responsible for temporary storage of 
generated   |
  * |       | events on each node can also affect the functionality of this 
command.        |
  * |       |                                                                   
            |
- * |       | By default - all events are enabled and GridGain stores last 
10,000 local     |
+ * |       | By default - all events are enabled and Ignite stores last 10,000 
local     |
  * |       | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+---------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/VisorTasksCommand.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/VisorTasksCommand.scala
 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/VisorTasksCommand.scala
index fd5e0b3..6d2dd3f 100644
--- 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/VisorTasksCommand.scala
+++ 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/tasks/VisorTasksCommand.scala
@@ -246,14 +246,14 @@ private case class VisorTask(
  * 
+---------------------------------------------------------------------------------------+
  * | tasks | Prints statistics about tasks and executions.                     
            |
  * |       |                                                                   
            |
- * |       | Note that this command depends on GridGain events.                
            |
+ * |       | Note that this command depends on Ignite events.                  
          |
  * |       |                                                                   
            |
- * |       | GridGain events can be individually enabled and disabled and 
disabled events  |
+ * |       | Ignite events can be individually enabled and disabled and 
disabled events  |
  * |       | can affect the results produced by this command. Note also that 
configuration |
  * |       | of Event Storage SPI that is responsible for temporary storage of 
generated   |
  * |       | events on each node can also affect the functionality of this 
command.        |
  * |       |                                                                   
            |
- * |       | By default - all events are enabled and GridGain stores last 
10,000 local     |
+ * |       | By default - all events are enabled and Ignite stores last 10,000 
local     |
  * |       | events on each node. Both of these defaults can be changed in 
configuration.  |
  * 
+---------------------------------------------------------------------------------------+
  * }}}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/visor-console/src/main/scala/org/apache/ignite/visor/visor.scala
----------------------------------------------------------------------
diff --git 
a/modules/visor-console/src/main/scala/org/apache/ignite/visor/visor.scala 
b/modules/visor-console/src/main/scala/org/apache/ignite/visor/visor.scala
index a4da96f..10cb85b 100644
--- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/visor.scala
+++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/visor.scala
@@ -113,10 +113,10 @@ trait VisorTag
  * }}}
  *
  * ==Overview==
- * Visor console provides monitoring capabilities for GridGain.
+ * Visor console provides monitoring capabilities for Ignite.
  *
  * ==Usage==
- * GridGain ships with `IGNITE_HOME/bin/ignitevisorcmd.{sh|bat}` script that 
starts Visor console.
+ * Ignite ships with `IGNITE_HOME/bin/ignitevisorcmd.{sh|bat}` script that 
starts Visor console.
  *
  * Just type:<ex>help</ex> in Visor console to get help and get started.
  */
@@ -206,7 +206,7 @@ object visor extends VisorTag {
      */
     private final val DFLT_LOG_PATH = "visor/visor-log"
 
-    /** Default configuration path relative to GridGain home. */
+    /** Default configuration path relative to Ignite home. */
     private final val DFLT_CFG = "config/default-config.xml"
 
     /** Log file. */
@@ -2256,7 +2256,7 @@ object visor extends VisorTag {
      * Starts logging to file `visor-log` located at `/home/user`.
      * <br>
      * <ex>log -l -f=log/visor-log</ex>
-     * Starts logging to file `visor-log` located at &lt`GridGain home 
folder`&gt`/log`.
+     * Starts logging to file `visor-log` located at &lt`Ignite home 
folder`&gt`/log`.
      * <br>
      * <ex>log -l -p=20</ex>
      * Starts logging with querying events period of 20 seconds.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletContextListenerStartup.java
----------------------------------------------------------------------
diff --git 
a/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletContextListenerStartup.java
 
b/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletContextListenerStartup.java
index 504ce9b..457fffa 100644
--- 
a/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletContextListenerStartup.java
+++ 
b/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletContextListenerStartup.java
@@ -30,8 +30,8 @@ import java.net.*;
 import java.util.*;
 
 /**
- * This class defines GridGain startup based on servlet context listener.
- * This startup can be used to start GridGain inside any web container.
+ * This class defines Ignite startup based on servlet context listener.
+ * This startup can be used to start Ignite inside any web container.
  * <p>
  * This startup must be defined in {@code web.xml} file.
  * <pre name="code" class="xml">
@@ -46,7 +46,7 @@ import java.util.*;
  * </pre>
  * <p>
  * Servlet context listener based startup may be used in any web container 
like Tomcat, Jetty and etc.
- * Depending on the way this startup is deployed the GridGain instance can be 
accessed
+ * Depending on the way this startup is deployed the Ignite instance can be 
accessed
  * by either all web applications or by only one. See web container class 
loading architecture:
  * <ul>
  * <li><a target=_blank 
href="http://tomcat.apache.org/tomcat-7.0-doc/class-loader-howto.html";>http://tomcat.apache.org/tomcat-7.0-doc/class-loader-howto.html</a></li>
@@ -54,11 +54,11 @@ import java.util.*;
  * </ul>
  * <p>
  * <h2 class="header">Tomcat</h2>
- * There are two ways to start GridGain on Tomcat.
+ * There are two ways to start Ignite on Tomcat.
  * <ul>
- * <li>GridGain started when web container starts and GridGain instance is 
accessible only to all web applications.
+ * <li>Ignite started when web container starts and Ignite instance is 
accessible only to all web applications.
  *     <ol>
- *     <li>Add GridGain libraries in Tomcat common loader.
+ *     <li>Add Ignite libraries in Tomcat common loader.
  *         Add in file {@code $TOMCAT_HOME/conf/catalina.properties} for 
property {@code common.loader}
  *         the following {@code $IGNITE_HOME/*.jar,$IGNITE_HOME/libs/*.jar}
  *         (replace {@code $IGNITE_HOME} with absolute path).
@@ -78,7 +78,7 @@ import java.util.*;
  *     </ol>
  * </li>
  * <li>
- * GridGain started from WAR-file and GridGain instance is accessible only to 
that web application.
+ * Ignite started from WAR-file and Ignite instance is accessible only to that 
web application.
  * Difference with approach described above is that {@code web.xml} file and 
all libraries should
  * be added in WAR file without changes in Tomcat configuration files.
  * </li>

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletStartup.java
----------------------------------------------------------------------
diff --git 
a/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletStartup.java
 
b/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletStartup.java
index f6f2df9..b4ff6ae 100644
--- 
a/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletStartup.java
+++ 
b/modules/web/src/main/java/org/apache/ignite/startup/servlet/IgniteServletStartup.java
@@ -31,13 +31,13 @@ import java.net.*;
 import java.util.*;
 
 /**
- * This class defines servlet-based GridGain startup. This startup can be used 
to start GridGain
+ * This class defines servlet-based Ignite startup. This startup can be used 
to start Ignite
  * inside any web container as servlet.
  * <p>
  * This startup must be defined in {@code web.xml} file.
  * <pre name="code" class="xml">
  * &lt;servlet&gt;
- *     &lt;servlet-name&gt;GridGain&lt;/servlet-name&gt;
+ *     &lt;servlet-name&gt;Ignite&lt;/servlet-name&gt;
  *     
&lt;servlet-class&gt;org.apache.ignite.startup.servlet.IgniteServletStartup&lt;/servlet-class&gt;
  *     &lt;init-param&gt;
  *         &lt;param-name&gt;cfgFilePath&lt;/param-name&gt;
@@ -48,7 +48,7 @@ import java.util.*;
  * </pre>
  * <p>
  * Servlet-based startup may be used in any web container like Tomcat, Jetty 
and etc.
- * Depending on the way this startup is deployed the GridGain instance can be 
accessed
+ * Depending on the way this startup is deployed the Ignite instance can be 
accessed
  * by either all web applications or by only one. See web container class 
loading architecture:
  * <ul>
  * <li><a target=_blank 
href="http://tomcat.apache.org/tomcat-7.0-doc/class-loader-howto.html";>http://tomcat.apache.org/tomcat-7.0-doc/class-loader-howto.html</a></li>
@@ -56,11 +56,11 @@ import java.util.*;
  * </ul>
  * <p>
  * <h2 class="header">Tomcat</h2>
- * There are two ways to start GridGain on Tomcat.
+ * There are two ways to start Ignite on Tomcat.
  * <ul>
- * <li>GridGain started when web container starts and GridGain instance is 
accessible only to all web applications.
+ * <li>Ignite started when web container starts and Ignite instance is 
accessible only to all web applications.
  * <ol>
- *     <li>Add GridGain libraries in Tomcat common loader.
+ *     <li>Add Ignite libraries in Tomcat common loader.
  *         Add in file {@code $TOMCAT_HOME/conf/catalina.properties} for 
property {@code shared.loader}
  *         the following {@code 
$IGNITE_HOME/gridgain.jar,$IGNITE_HOME/libs/*.jar}
  *         (replace {@code $IGNITE_HOME} with absolute path).
@@ -68,7 +68,7 @@ import java.util.*;
  *     <li>Configure startup in {@code $TOMCAT_HOME/conf/web.xml}
  *         <pre name="code" class="xml">
  *         &lt;servlet&gt;
- *             &lt;servlet-name&gt;GridGain&lt;/servlet-name&gt;
+ *             &lt;servlet-name&gt;Ignite&lt;/servlet-name&gt;
  *             
&lt;servlet-class&gt;org.apache.ignite.startup.servlet.IgniteServletStartup&lt;/servlet-class&gt;
  *             &lt;init-param&gt;
  *                 &lt;param-name&gt;cfgFilePath&lt;/param-name&gt;
@@ -81,7 +81,7 @@ import java.util.*;
  *     </ol>
  * </li>
  * <li>
- * GridGain started from WAR-file and GridGain instance is accessible only to 
that web application.
+ * Ignite started from WAR-file and Ignite instance is accessible only to that 
web application.
  * Difference with approach described above is that {@code web.xml} file and 
all libraries should
  * be added in WAR file without changes in Tomcat configuration files.
  * </li>
@@ -96,7 +96,7 @@ import java.util.*;
  *
  * ServletHttpContext ctx = (ServletHttpContext)service.getContext("/");
  *
- * ServletHolder servlet = ctx.addServlet("GridGain", "/GridGainStartup",
+ * ServletHolder servlet = ctx.addServlet("Ignite", "/IgniteStartup",
  *      "org.apache.ignite.startup.servlet.IgniteServletStartup");
  *
  * servlet.setInitParameter("cfgFilePath", "config/default-config.xml");
@@ -124,7 +124,7 @@ public class IgniteServletStartup extends HttpServlet {
     /** {@inheritDoc} */
     @SuppressWarnings({"unchecked"})
     @Override public void init() throws ServletException {
-        // Avoid multiple servlet instances. GridGain should be loaded once.
+        // Avoid multiple servlet instances. Ignite should be loaded once.
         if (loaded)
             return;
 

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapBenchmark.java
index 0d272ce..20bf68d 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs get operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
+ * Ignite benchmark that performs get operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
  * memory mode.
  */
 public class IgniteGetOffHeapBenchmark extends IgniteGetBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapValuesBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapValuesBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapValuesBenchmark.java
index 28283a9..e68fd99 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapValuesBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetOffHeapValuesBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs get operations with {@link 
CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES}
+ * Ignite benchmark that performs get operations with {@link 
CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES}
  * memory mode.
  */
 public class IgniteGetOffHeapValuesBenchmark extends IgniteGetBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapBenchmark.java
index 8c0836e..432e0c3 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs put and get operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIRED}
+ * Ignite benchmark that performs put and get operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIRED}
  * memory mode.
  */
 public class IgnitePutGetOffHeapBenchmark extends IgnitePutGetBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapValuesBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapValuesBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapValuesBenchmark.java
index 8cc9a2d..9e1368e 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapValuesBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetOffHeapValuesBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs put and get operations
+ * Ignite benchmark that performs put and get operations
  * with {@link CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES} memory mode.
  */
 public class IgnitePutGetOffHeapValuesBenchmark extends IgnitePutGetBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapBenchmark.java
index 8e517c5..4311c27 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs transactional put and get operations
+ * Ignite benchmark that performs transactional put and get operations
  * with {@link CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED} memory mode.
  */
 public class IgnitePutGetTxOffHeapBenchmark extends IgnitePutGetTxBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapValuesBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapValuesBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapValuesBenchmark.java
index e85c57d..a894899 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapValuesBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutGetTxOffHeapValuesBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs transactional put and get operations
+ * Ignite benchmark that performs transactional put and get operations
  * with {@link CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES} memory mode.
  */
 public class IgnitePutGetTxOffHeapValuesBenchmark extends 
IgnitePutGetTxBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapBenchmark.java
index 6f8c0ae..1e63ce8 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs put operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
+ * Ignite benchmark that performs put operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
  * memory mode.
  */
 public class IgnitePutOffHeapBenchmark extends IgnitePutBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapValuesBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapValuesBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapValuesBenchmark.java
index b9465ad..d6aacb2 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapValuesBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutOffHeapValuesBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs put operations with {@link 
CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES}
+ * Ignite benchmark that performs put operations with {@link 
CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES}
  * memory mode.
  */
 public class IgnitePutOffHeapValuesBenchmark extends IgnitePutBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapBenchmark.java
index 31017c6..18c65fe 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs transactional put operations
+ * Ignite benchmark that performs transactional put operations
  * with {@link CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIRED} memory mode.
  */
 public class IgnitePutTxOffHeapBenchmark extends IgnitePutTxBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapValuesBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapValuesBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapValuesBenchmark.java
index c926650..5691a4f 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapValuesBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutTxOffHeapValuesBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs transactional put operations
+ * Ignite benchmark that performs transactional put operations
  * with {@link CacheMemoryMode#OFFHEAP_VALUES OFFHEAP VALUES} memory mode.
  */
 public class IgnitePutTxOffHeapValuesBenchmark extends IgnitePutTxBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryJoinOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryJoinOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryJoinOffHeapBenchmark.java
index e4713b1..517aabf 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryJoinOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryJoinOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs query operations with joins
+ * Ignite benchmark that performs query operations with joins
  * and {@link CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED} memory mode.
  */
 public class IgniteSqlQueryJoinOffHeapBenchmark extends 
IgniteSqlQueryJoinBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryOffHeapBenchmark.java
index c36ba11..42bda51 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs query operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
+ * Ignite benchmark that performs query operations with {@link 
CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED}
  * memory mode.
  */
 public class IgniteSqlQueryOffHeapBenchmark extends IgniteSqlQueryBenchmark {

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/86ab8e20/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryPutOffHeapBenchmark.java
----------------------------------------------------------------------
diff --git 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryPutOffHeapBenchmark.java
 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryPutOffHeapBenchmark.java
index e876590..d5c2012 100644
--- 
a/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryPutOffHeapBenchmark.java
+++ 
b/modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteSqlQueryPutOffHeapBenchmark.java
@@ -21,7 +21,7 @@ import org.apache.ignite.*;
 import org.apache.ignite.cache.*;
 
 /**
- * GridGain benchmark that performs put and query operations
+ * Ignite benchmark that performs put and query operations
  * with {@link CacheMemoryMode#OFFHEAP_TIERED OFFHEAP TIERED} memory mode.
  */
 public class IgniteSqlQueryPutOffHeapBenchmark extends 
IgniteSqlQueryPutBenchmark {

Reply via email to