SGF-567 - Rename all com.gemstone.gemfire package references to org.apache.geode.

This commit is contained in:
John Blum
2016-11-17 11:21:51 -08:00
parent 7c1574e600
commit b5e05a4b69
418 changed files with 3604 additions and 3907 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);
}
}
}
}