#115 - Harmonized package names.

We now consistently use example.springdata.$store as base package name.
This commit is contained in:
Oliver Gierke
2015-07-16 09:02:24 +02:00
parent 50cb4b9bba
commit bca4e65e4f
94 changed files with 388 additions and 302 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example;
package example.springdata.map;
import java.util.UUID;

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example;
package example.springdata.map;
import java.util.List;
import java.util.UUID;
@@ -25,7 +25,7 @@ import org.springframework.data.repository.CrudRepository;
*
* @author Oliver Gierke
*/
public interface PersonRepository extends CrudRepository<Person, UUID> {
interface PersonRepository extends CrudRepository<Person, UUID> {
/**
* Returns all person older than the given age.

View File

@@ -13,11 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example;
package example.springdata.map;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import example.springdata.map.Person;
import example.springdata.map.PersonRepository;
import java.util.List;
import org.junit.Test;