SGF-558 - Rename Geode package imports from com.gemstone.gemfire to org.apache.geode.

Upgrade Apache Geode to 1.1.0-incubating-SNAPSHOT.
This commit is contained in:
John Blum
2016-10-08 01:41:48 -07:00
parent 6edbe55f15
commit 0f0468e68d
413 changed files with 2826 additions and 3118 deletions

View File

@@ -19,12 +19,12 @@ package org.springframework.data.gemfire.samples.helloworld;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.gemstone.gemfire.cache.EntryEvent;
import com.gemstone.gemfire.cache.util.CacheListenerAdapter;
import org.apache.geode.cache.EntryEvent;
import org.apache.geode.cache.util.CacheListenerAdapter;
/**
* Listener that logs entry operations to the configured logger.
*
*
* @author Costin Leau
*/
public class CacheLogger extends CacheListenerAdapter<Object, Object> {

View File

@@ -34,13 +34,13 @@ import org.springframework.data.gemfire.GemfireCallback;
import org.springframework.data.gemfire.GemfireTemplate;
import org.springframework.stereotype.Component;
import com.gemstone.gemfire.GemFireCheckedException;
import com.gemstone.gemfire.GemFireException;
import com.gemstone.gemfire.cache.Region;
import org.apache.geode.GemFireCheckedException;
import org.apache.geode.GemFireException;
import org.apache.geode.cache.Region;
/**
* Entity processing and interpreting shell commands.
*
*
* @author Costin Leau
*/
@Component
@@ -205,4 +205,4 @@ public class CommandProcessor {
}
});
}
}
}

View File

@@ -24,11 +24,11 @@ import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.stereotype.Component;
import com.gemstone.gemfire.cache.Region;
import org.apache.geode.cache.Region;
/**
* Main bean for interacting with the cache from the console.
*
* Main bean for interacting with the cache from the console.
*
* @author Costin Leau
*/
@Component
@@ -64,4 +64,4 @@ public class HelloWorld {
throw new IllegalStateException("Cannot greet world", ex);
}
}
}
}