#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.orders;
package example.springdata.rest.projections;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;

View File

@@ -13,7 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import example.springdata.rest.projections.Customer.Gender;
import java.math.BigDecimal;
@@ -23,8 +25,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import example.orders.Customer.Gender;
/**
* @author Oliver Gierke
*/

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import javax.persistence.CascadeType;
import javax.persistence.Entity;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.data.rest.core.config.Projection;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import java.math.BigDecimal;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
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.orders;
package example.springdata.rest.projections;
import org.springframework.data.repository.CrudRepository;

View File

@@ -13,11 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
import example.springdata.rest.projections.Application;
import example.springdata.rest.projections.Order;
import example.springdata.rest.projections.OrderRepository;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.orders;
package example.springdata.rest.projections;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;