Uses of Class
org.springframework.samples.petclinic.Owner

Packages that use Owner
org.springframework.samples.petclinic The classes in this package represent PetClinic's business layer. 
org.springframework.samples.petclinic.hibernate The classes in this package represent the Hibernate implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.jdbc The classes in this package represent the JDBC implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.jpa The classes in this package represent the JPA implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.validation The classes in this package represent the set of Validator objects the Business Layer makes available to the Presentation Layer. 
org.springframework.samples.petclinic.web The classes in this package represent PetClinic's web presentation layer. 
 

Uses of Owner in org.springframework.samples.petclinic
 

Methods in org.springframework.samples.petclinic that return Owner
 Owner Pet.getOwner()
           
 Owner Clinic.loadOwner(int id)
          Retrieve an Owner from the data store by id.
 

Methods in org.springframework.samples.petclinic that return types with arguments of type Owner
 java.util.Collection<Owner> Clinic.findOwners(java.lang.String lastName)
          Retrieve Owners from the data store by last name, returning all owners whose last name starts with the given name.
 

Methods in org.springframework.samples.petclinic with parameters of type Owner
protected  void Pet.setOwner(Owner owner)
           
 void Clinic.storeOwner(Owner owner)
          Save an Owner to the data store, either inserting or updating it.
 

Uses of Owner in org.springframework.samples.petclinic.hibernate
 

Methods in org.springframework.samples.petclinic.hibernate that return Owner
 Owner HibernateClinic.loadOwner(int id)
           
 

Methods in org.springframework.samples.petclinic.hibernate that return types with arguments of type Owner
 java.util.Collection<Owner> HibernateClinic.findOwners(java.lang.String lastName)
           
 

Methods in org.springframework.samples.petclinic.hibernate with parameters of type Owner
 void HibernateClinic.storeOwner(Owner owner)
           
 

Uses of Owner in org.springframework.samples.petclinic.jdbc
 

Methods in org.springframework.samples.petclinic.jdbc that return Owner
 Owner SimpleJdbcClinic.loadOwner(int id)
          Loads the Owner with the supplied id; also loads the Pets and Visits for the corresponding owner, if not already loaded.
 

Methods in org.springframework.samples.petclinic.jdbc that return types with arguments of type Owner
 java.util.Collection<Owner> SimpleJdbcClinic.findOwners(java.lang.String lastName)
          Loads Owners from the data store by last name, returning all owners whose last name starts with the given name; also loads the Pets and Visits for the corresponding owners, if not already loaded.
 

Methods in org.springframework.samples.petclinic.jdbc with parameters of type Owner
 void SimpleJdbcClinic.storeOwner(Owner owner)
           
 

Uses of Owner in org.springframework.samples.petclinic.jpa
 

Methods in org.springframework.samples.petclinic.jpa that return Owner
 Owner EntityManagerClinic.loadOwner(int id)
           
 

Methods in org.springframework.samples.petclinic.jpa that return types with arguments of type Owner
 java.util.Collection<Owner> EntityManagerClinic.findOwners(java.lang.String lastName)
           
 

Methods in org.springframework.samples.petclinic.jpa with parameters of type Owner
 void EntityManagerClinic.storeOwner(Owner owner)
           
 

Uses of Owner in org.springframework.samples.petclinic.validation
 

Methods in org.springframework.samples.petclinic.validation with parameters of type Owner
 void OwnerValidator.validate(Owner owner, org.springframework.validation.Errors errors)
           
 

Uses of Owner in org.springframework.samples.petclinic.web
 

Methods in org.springframework.samples.petclinic.web with parameters of type Owner
 java.lang.String FindOwnersForm.processSubmit(Owner owner, org.springframework.validation.BindingResult result, org.springframework.ui.Model model)
           
 java.lang.String EditOwnerForm.processSubmit(Owner owner, org.springframework.validation.BindingResult result, org.springframework.web.bind.support.SessionStatus status)
          Processes an owner edit form submission.
 java.lang.String AddOwnerForm.processSubmit(Owner owner, org.springframework.validation.BindingResult result, org.springframework.web.bind.support.SessionStatus status)
           
 



Copyright © 2010. All Rights Reserved.