Rename 'example.app.near.caching' package to 'example.app.caching.near'.

This commit is contained in:
John Blum
2019-08-12 19:25:31 -07:00
parent a4e0f98326
commit 114dae5df3
10 changed files with 29 additions and 29 deletions

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client;
package example.app.caching.near.client;
import static org.assertj.core.api.Assertions.assertThat;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.config;
package example.app.caching.near.client.config;
import org.apache.geode.cache.CacheListener;
import org.apache.geode.cache.EntryEvent;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.controller;
package example.app.caching.near.client.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -21,8 +21,8 @@ import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import example.app.near.caching.client.model.Person;
import example.app.near.caching.client.service.YellowPagesService;
import example.app.caching.near.client.service.YellowPagesService;
import example.app.caching.near.client.model.Person;
/**
* Spring {@link RestController} class for implementing the UI to the Yellow Pages application.
@@ -30,8 +30,8 @@ import example.app.near.caching.client.service.YellowPagesService;
* @author John Blum
* @see org.springframework.web.bind.annotation.GetMapping
* @see org.springframework.web.bind.annotation.RestController
* @see example.app.near.caching.client.model.Person
* @see example.app.near.caching.client.service.YellowPagesService
* @see Person
* @see YellowPagesService
* @since 1.1.0
*/
// tag::class[]

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.model;
package example.app.caching.near.client.model;
import lombok.EqualsAndHashCode;
import lombok.Getter;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.service;
package example.app.caching.near.client.service;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
@@ -21,10 +21,10 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
import example.app.near.caching.client.model.Person;
import example.app.near.caching.client.service.support.AbstractCacheableService;
import example.app.near.caching.client.service.support.EmailGenerator;
import example.app.near.caching.client.service.support.PhoneNumberGenerator;
import example.app.caching.near.client.service.support.AbstractCacheableService;
import example.app.caching.near.client.model.Person;
import example.app.caching.near.client.service.support.EmailGenerator;
import example.app.caching.near.client.service.support.PhoneNumberGenerator;
/**
* Spring {@link Service} class implementing the Yellow Pages.
@@ -32,10 +32,10 @@ import example.app.near.caching.client.service.support.PhoneNumberGenerator;
* @author John Blum
* @see org.springframework.cache.annotation.Cacheable
* @see org.springframework.stereotype.Service
* @see example.app.near.caching.client.model.Person
* @see example.app.near.caching.client.service.support.AbstractCacheableService
* @see example.app.near.caching.client.service.support.EmailGenerator
* @see example.app.near.caching.client.service.support.PhoneNumberGenerator
* @see Person
* @see AbstractCacheableService
* @see EmailGenerator
* @see PhoneNumberGenerator
* @since 1.1.0
*/
// tag::class[]

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.service.support;
package example.app.caching.near.client.service.support;
import java.util.Random;
import java.util.concurrent.atomic.AtomicBoolean;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.service.support;
package example.app.caching.near.client.service.support;
import java.util.Arrays;
import java.util.List;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client.service.support;
package example.app.caching.near.client.service.support;
import java.util.Arrays;
import java.util.List;

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.server;
package example.app.caching.near.server;
import static org.assertj.core.api.Assertions.assertThat;
@@ -37,7 +37,7 @@ import org.springframework.data.gemfire.config.annotation.CacheServerApplication
import org.springframework.data.gemfire.config.annotation.EnableLocator;
import org.springframework.data.gemfire.config.annotation.EnableManager;
import example.app.near.caching.client.model.Person;
import example.app.caching.near.client.model.Person;
/**
* Spring Boot application that configures and bootstraps an Apache Geode {@link CacheServer} application.

View File

@@ -13,7 +13,7 @@
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package example.app.near.caching.client;
package example.app.caching.near.client;
import static org.assertj.core.api.Assertions.assertThat;
@@ -31,9 +31,9 @@ import org.springframework.data.gemfire.tests.integration.ForkingClientServerInt
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;
import example.app.near.caching.client.model.Person;
import example.app.near.caching.client.service.YellowPagesService;
import example.app.near.caching.server.BootGeodeNearCachingCacheServerApplication;
import example.app.caching.near.client.service.YellowPagesService;
import example.app.caching.near.server.BootGeodeNearCachingCacheServerApplication;
import example.app.caching.near.client.model.Person;
/**
* Integration Tests for the Spring Boot, {@link ClientCache} application example for {@literal Near Caching}.
@@ -44,9 +44,9 @@ import example.app.near.caching.server.BootGeodeNearCachingCacheServerApplicatio
* @see org.springframework.data.gemfire.tests.integration.ForkingClientServerIntegrationTestsSupport
* @see org.springframework.test.context.ActiveProfiles
* @see org.springframework.test.context.junit4.SpringRunner
* @see example.app.near.caching.client.model.Person
* @see example.app.near.caching.client.service.YellowPagesService
* @see example.app.near.caching.server.BootGeodeNearCachingCacheServerApplication
* @see Person
* @see YellowPagesService
* @see BootGeodeNearCachingCacheServerApplication
* @since 1.1.0
*/
@ActiveProfiles("client")