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:
@@ -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> {
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user