# ignite-204 : fix GridGain occurrences

Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d220443a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d220443a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d220443a

Branch: refs/heads/master
Commit: d220443a356676db07e9e05e27f670ca6212f210
Parents: 89b5476
Author: Artem Shutak <ashu...@gridgain.com>
Authored: Mon Feb 16 13:57:10 2015 +0300
Committer: Artem Shutak <ashu...@gridgain.com>
Committed: Mon Feb 16 13:57:10 2015 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/examples/datagrid/CacheQueryExample.java | 6 +++---
 pom.xml                                                        | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d220443a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
----------------------------------------------------------------------
diff --git 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
index e041244..4cfba44 100644
--- 
a/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
+++ 
b/examples/src/main/java/org/apache/ignite/examples/datagrid/CacheQueryExample.java
@@ -144,8 +144,8 @@ public class CacheQueryExample {
             + "and lower(Organization.name) = lower(?)";
 
         // Execute queries for find employees for different organizations.
-        print("Following people are 'GridGain' employees: ",
-            cache.query(sql(Person.class, 
joinSql).setArgs("GridGain")).getAll());
+        print("Following people are 'Ignite' employees: ",
+            cache.query(sql(Person.class, 
joinSql).setArgs("Ignite")).getAll());
         print("Following people are 'Other' employees: ",
             cache.query(sql(Person.class, joinSql).setArgs("Other")).getAll());
     }
@@ -222,7 +222,7 @@ public class CacheQueryExample {
         IgniteCache cache = Ignition.ignite().jcache(CACHE_NAME);
 
         // Organizations.
-        Organization org1 = new Organization("GridGain");
+        Organization org1 = new Organization("Ignite");
         Organization org2 = new Organization("Other");
 
         // People.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d220443a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9e1d29f..51c3365 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1012,7 +1012,7 @@
                                         </group>
                                         <group>
                                             <title>Visor Plugins</title>
-                                            
<packages>org.gridgain.visor.plugin</packages>
+                                            
<packages>org.apache.ignite.visor.plugin</packages>
                                         </group>
                                         <group>
                                             <title>Spring Caching</title>

Reply via email to