#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.stores;
package example.springdata.rest.stores;
import static org.springframework.data.mongodb.core.index.GeoSpatialIndexType.*;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import lombok.Data;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

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

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@@ -13,10 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores.web;
package example.springdata.rest.stores.web;
import static org.springframework.data.geo.Metrics.*;
import example.springdata.rest.stores.Store;
import example.springdata.rest.stores.StoreRepository;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
@@ -39,9 +42,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import example.stores.Store;
import example.stores.StoreRepository;
/**
* A Spring MVC controller to produce an HTML frontend.
*

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import static org.springframework.hateoas.MediaTypes.*;

View File

@@ -13,11 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.stores;
package example.springdata.rest.stores;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import example.springdata.rest.stores.Address;
import example.springdata.rest.stores.Store;
import example.springdata.rest.stores.StoreApp;
import example.springdata.rest.stores.StoreRepository;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;