mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:15:50 +00:00
moved pets under owners
This commit is contained in:
parent
cc199a7a15
commit
2742ccbd4a
11 changed files with 14 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.owner;
|
||||
package org.springframework.samples.petclinic.owners;
|
||||
|
||||
public class Owner {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.owner;
|
||||
package org.springframework.samples.petclinic.owners;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.samples.petclinic.util.ResponseContext;
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.owner;
|
||||
package org.springframework.samples.petclinic.owners;
|
||||
|
||||
import java.util.Collection;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.owner;
|
||||
package org.springframework.samples.petclinic.owners;
|
||||
|
||||
import java.util.Collection;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.owner;
|
||||
package org.springframework.samples.petclinic.owners;
|
||||
|
||||
import java.util.Collection;
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package org.springframework.samples.petclinic.owners.pets;
|
||||
|
||||
public enum Gender {
|
||||
MALE, FEMALE
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.pet;
|
||||
package org.springframework.samples.petclinic.owners.pets;
|
||||
|
||||
import java.util.Date;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.pet;
|
||||
package org.springframework.samples.petclinic.owners.pets;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.samples.petclinic.util.ResponseContext;
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.pet;
|
||||
package org.springframework.samples.petclinic.owners.pets;
|
||||
|
||||
public interface PetRepository {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.springframework.samples.petclinic.pet;
|
||||
package org.springframework.samples.petclinic.owners.pets;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
package org.springframework.samples.petclinic.pet;
|
||||
|
||||
public enum Gender {
|
||||
MALE, FEMALE
|
||||
}
|
Loading…
Reference in a new issue