A B C D E F G H I L N O P R S T U V W

A

AbstractTraceAspect - Class in org.springframework.samples.petclinic.aspects
Aspect to illustrate Spring-driven load-time weaving.
AbstractTraceAspect() - Constructor for class org.springframework.samples.petclinic.aspects.AbstractTraceAspect
 
AddOwnerForm - Class in org.springframework.samples.petclinic.web
JavaBean form controller that is used to add a new Owner to the system.
AddOwnerForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.AddOwnerForm
 
addPet(Pet) - Method in class org.springframework.samples.petclinic.Owner
 
AddPetForm - Class in org.springframework.samples.petclinic.web
JavaBean form controller that is used to add a new Pet to the system.
AddPetForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.AddPetForm
 
addSpecialty(Specialty) - Method in class org.springframework.samples.petclinic.Vet
 
addVisit(Visit) - Method in class org.springframework.samples.petclinic.Pet
 
AddVisitForm - Class in org.springframework.samples.petclinic.web
JavaBean form controller that is used to add a new Visit to the system.
AddVisitForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.AddVisitForm
 

B

BaseEntity - Class in org.springframework.samples.petclinic
Simple JavaBean domain object with an id property.
BaseEntity() - Constructor for class org.springframework.samples.petclinic.BaseEntity
 
buildFeedEntries(Map<String, Object>, HttpServletRequest, HttpServletResponse) - Method in class org.springframework.samples.petclinic.web.VisitsAtomView
 
buildFeedMetadata(Map<String, Object>, Feed, HttpServletRequest) - Method in class org.springframework.samples.petclinic.web.VisitsAtomView
 

C

CallMonitoringAspect - Class in org.springframework.samples.petclinic.aspects
Simple AspectJ aspect that monitors call count and call invocation time.
CallMonitoringAspect() - Constructor for class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
Clinic - Interface in org.springframework.samples.petclinic
The high-level PetClinic business interface.
ClinicBindingInitializer - Class in org.springframework.samples.petclinic.web
Shared WebBindingInitializer for PetClinic's custom editors.
ClinicBindingInitializer() - Constructor for class org.springframework.samples.petclinic.web.ClinicBindingInitializer
 
ClinicController - Class in org.springframework.samples.petclinic.web
Annotation-driven MultiActionController that handles all non-form URL's.
ClinicController(Clinic) - Constructor for class org.springframework.samples.petclinic.web.ClinicController
 

D

deletePet(int) - Method in interface org.springframework.samples.petclinic.Clinic
Deletes a Pet from the data store.
deletePet(int) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
deletePet(int) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
deletePet(int) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
deletePet(int) - Method in class org.springframework.samples.petclinic.web.EditPetForm
Deletes a pet.

E

EditOwnerForm - Class in org.springframework.samples.petclinic.web
JavaBean Form controller that is used to edit an existing Owner.
EditOwnerForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.EditOwnerForm
 
EditPetForm - Class in org.springframework.samples.petclinic.web
JavaBean Form controller that is used to edit an existing Pet.
EditPetForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.EditPetForm
 
EntityManagerClinic - Class in org.springframework.samples.petclinic.jpa
JPA implementation of the Clinic interface using EntityManager.
EntityManagerClinic() - Constructor for class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
EntityUtils - Class in org.springframework.samples.petclinic.util
Utility methods for handling entities.
EntityUtils() - Constructor for class org.springframework.samples.petclinic.util.EntityUtils
 

F

findOwners(String) - Method in interface org.springframework.samples.petclinic.Clinic
Retrieve Owners from the data store by last name, returning all owners whose last name starts with the given name.
findOwners(String) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
findOwners(String) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
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.
findOwners(String) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
FindOwnersForm - Class in org.springframework.samples.petclinic.web
JavaBean Form controller that is used to search for Owners by last name.
FindOwnersForm(Clinic) - Constructor for class org.springframework.samples.petclinic.web.FindOwnersForm
 

G

getAddress() - Method in class org.springframework.samples.petclinic.Owner
 
getBirthDate() - Method in class org.springframework.samples.petclinic.Pet
 
getById(Collection<T>, Class<T>, int) - Static method in class org.springframework.samples.petclinic.util.EntityUtils
Look up the entity of the given class with the given id in the given collection.
getCallCount() - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
getCallTime() - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
getCity() - Method in class org.springframework.samples.petclinic.Owner
 
getDate() - Method in class org.springframework.samples.petclinic.Visit
Getter for property date.
getDescription() - Method in class org.springframework.samples.petclinic.Visit
Getter for property description.
getFirstName() - Method in class org.springframework.samples.petclinic.Person
 
getId() - Method in class org.springframework.samples.petclinic.BaseEntity
 
getLastName() - Method in class org.springframework.samples.petclinic.Person
 
getName() - Method in class org.springframework.samples.petclinic.NamedEntity
 
getNamesRequested() - Method in class org.springframework.samples.petclinic.aspects.UsageLogAspect
 
getNrOfSpecialties() - Method in class org.springframework.samples.petclinic.Vet
 
getOwner() - Method in class org.springframework.samples.petclinic.Pet
 
getPet(String) - Method in class org.springframework.samples.petclinic.Owner
Return the Pet with the given name, or null if none found for this Owner.
getPet(String, boolean) - Method in class org.springframework.samples.petclinic.Owner
Return the Pet with the given name, or null if none found for this Owner.
getPet() - Method in class org.springframework.samples.petclinic.Visit
Getter for property pet.
getPets() - Method in class org.springframework.samples.petclinic.Owner
 
getPetsInternal() - Method in class org.springframework.samples.petclinic.Owner
 
getPetTypes() - Method in interface org.springframework.samples.petclinic.Clinic
Retrieve all PetTypes from the data store.
getPetTypes() - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
getPetTypes() - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
getPetTypes() - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
getSpecialties() - Method in class org.springframework.samples.petclinic.Vet
 
getSpecialtiesInternal() - Method in class org.springframework.samples.petclinic.Vet
 
getTelephone() - Method in class org.springframework.samples.petclinic.Owner
 
getType() - Method in class org.springframework.samples.petclinic.Pet
 
getVetList() - Method in class org.springframework.samples.petclinic.Vets
 
getVets() - Method in interface org.springframework.samples.petclinic.Clinic
Retrieve all Vets from the data store.
getVets() - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
getVets() - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
getVets() - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
getVisits() - Method in class org.springframework.samples.petclinic.Pet
 
getVisitsInternal() - Method in class org.springframework.samples.petclinic.Pet
 

H

HibernateClinic - Class in org.springframework.samples.petclinic.hibernate
Hibernate implementation of the Clinic interface.
HibernateClinic(SessionFactory) - Constructor for class org.springframework.samples.petclinic.hibernate.HibernateClinic
 

I

init(DataSource) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
initBinder(WebDataBinder, WebRequest) - Method in class org.springframework.samples.petclinic.web.ClinicBindingInitializer
 
invoke(ProceedingJoinPoint) - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
isEnabled() - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
isNew() - Method in class org.springframework.samples.petclinic.BaseEntity
 

L

loadOwner(int) - Method in interface org.springframework.samples.petclinic.Clinic
Retrieve an Owner from the data store by id.
loadOwner(int) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
loadOwner(int) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
Loads the Owner with the supplied id; also loads the Pets and Visits for the corresponding owner, if not already loaded.
loadOwner(int) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
loadPet(int) - Method in interface org.springframework.samples.petclinic.Clinic
Retrieve a Pet from the data store by id.
loadPet(int) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
loadPet(int) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
loadPet(int) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
logNameRequest(String) - Method in class org.springframework.samples.petclinic.aspects.UsageLogAspect
 

N

NamedEntity - Class in org.springframework.samples.petclinic
Simple JavaBean domain object adds a name property to BaseEntity.
NamedEntity() - Constructor for class org.springframework.samples.petclinic.NamedEntity
 

O

org.springframework.samples.petclinic - package org.springframework.samples.petclinic
The classes in this package represent PetClinic's business layer.
org.springframework.samples.petclinic.aspects - package org.springframework.samples.petclinic.aspects
 
org.springframework.samples.petclinic.hibernate - package org.springframework.samples.petclinic.hibernate
The classes in this package represent the Hibernate implementation of PetClinic's persistence layer.
org.springframework.samples.petclinic.jdbc - package org.springframework.samples.petclinic.jdbc
The classes in this package represent the JDBC implementation of PetClinic's persistence layer.
org.springframework.samples.petclinic.jpa - package org.springframework.samples.petclinic.jpa
The classes in this package represent the JPA implementation of PetClinic's persistence layer.
org.springframework.samples.petclinic.util - package org.springframework.samples.petclinic.util
 
org.springframework.samples.petclinic.validation - package 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 - package org.springframework.samples.petclinic.web
The classes in this package represent PetClinic's web presentation layer.
Owner - Class in org.springframework.samples.petclinic
Simple JavaBean domain object representing an owner.
Owner() - Constructor for class org.springframework.samples.petclinic.Owner
 
ownerHandler(int) - Method in class org.springframework.samples.petclinic.web.ClinicController
Displays the specified owner.
OwnerValidator - Class in org.springframework.samples.petclinic.validation
Validator for Owner forms.
OwnerValidator() - Constructor for class org.springframework.samples.petclinic.validation.OwnerValidator
 

P

Person - Class in org.springframework.samples.petclinic
Simple JavaBean domain object representing an person.
Person() - Constructor for class org.springframework.samples.petclinic.Person
 
Pet - Class in org.springframework.samples.petclinic
Simple JavaBean business object representing a pet.
Pet() - Constructor for class org.springframework.samples.petclinic.Pet
 
PetType - Class in org.springframework.samples.petclinic
 
PetType() - Constructor for class org.springframework.samples.petclinic.PetType
 
PetTypeEditor - Class in org.springframework.samples.petclinic.web
 
PetTypeEditor(Clinic) - Constructor for class org.springframework.samples.petclinic.web.PetTypeEditor
 
PetValidator - Class in org.springframework.samples.petclinic.validation
Validator for Pet forms.
PetValidator() - Constructor for class org.springframework.samples.petclinic.validation.PetValidator
 
populatePetTypes() - Method in class org.springframework.samples.petclinic.web.AddPetForm
 
populatePetTypes() - Method in class org.springframework.samples.petclinic.web.EditPetForm
 
processSubmit(Owner, BindingResult, SessionStatus) - Method in class org.springframework.samples.petclinic.web.AddOwnerForm
 
processSubmit(Pet, BindingResult, SessionStatus) - Method in class org.springframework.samples.petclinic.web.AddPetForm
 
processSubmit(Visit, BindingResult, SessionStatus) - Method in class org.springframework.samples.petclinic.web.AddVisitForm
 
processSubmit(Owner, BindingResult, SessionStatus) - Method in class org.springframework.samples.petclinic.web.EditOwnerForm
Processes an owner edit form submission.
processSubmit(Pet, BindingResult, SessionStatus) - Method in class org.springframework.samples.petclinic.web.EditPetForm
Processes a pet edit form submission.
processSubmit(Owner, BindingResult, Model) - Method in class org.springframework.samples.petclinic.web.FindOwnersForm
 

R

refreshVetsCache() - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
Refresh the cache of Vets that the Clinic is holding.
refreshVetsCache() - Method in interface org.springframework.samples.petclinic.jdbc.SimpleJdbcClinicMBean
Refresh the cache of Vets that the Clinic is holding.
reset() - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 

S

setAddress(String) - Method in class org.springframework.samples.petclinic.Owner
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.AddOwnerForm
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.AddPetForm
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.AddVisitForm
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.EditOwnerForm
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.EditPetForm
 
setAllowedFields(WebDataBinder) - Method in class org.springframework.samples.petclinic.web.FindOwnersForm
 
setAsText(String) - Method in class org.springframework.samples.petclinic.web.PetTypeEditor
 
setBirthDate(Date) - Method in class org.springframework.samples.petclinic.Pet
 
setCity(String) - Method in class org.springframework.samples.petclinic.Owner
 
setDate(Date) - Method in class org.springframework.samples.petclinic.Visit
Setter for property date.
setDescription(String) - Method in class org.springframework.samples.petclinic.Visit
Setter for property description.
setEnabled(boolean) - Method in class org.springframework.samples.petclinic.aspects.CallMonitoringAspect
 
setFirstName(String) - Method in class org.springframework.samples.petclinic.Person
 
setHistorySize(int) - Method in class org.springframework.samples.petclinic.aspects.UsageLogAspect
 
setId(Integer) - Method in class org.springframework.samples.petclinic.BaseEntity
 
setLastName(String) - Method in class org.springframework.samples.petclinic.Person
 
setName(String) - Method in class org.springframework.samples.petclinic.NamedEntity
 
setOwner(Owner) - Method in class org.springframework.samples.petclinic.Pet
 
setPet(Pet) - Method in class org.springframework.samples.petclinic.Visit
Setter for property pet.
setPetsInternal(Set<Pet>) - Method in class org.springframework.samples.petclinic.Owner
 
setSpecialtiesInternal(Set<Specialty>) - Method in class org.springframework.samples.petclinic.Vet
 
setTelephone(String) - Method in class org.springframework.samples.petclinic.Owner
 
setType(PetType) - Method in class org.springframework.samples.petclinic.Pet
 
setupForm(Model) - Method in class org.springframework.samples.petclinic.web.AddOwnerForm
 
setupForm(int, Model) - Method in class org.springframework.samples.petclinic.web.AddPetForm
 
setupForm(int, Model) - Method in class org.springframework.samples.petclinic.web.AddVisitForm
 
setupForm(int, Model) - Method in class org.springframework.samples.petclinic.web.EditOwnerForm
Displays an edit form for the specified owner.
setupForm(int, Model) - Method in class org.springframework.samples.petclinic.web.EditPetForm
Displays an edit form for the specified owner.
setupForm(Model) - Method in class org.springframework.samples.petclinic.web.FindOwnersForm
 
setVisitsInternal(Set<Visit>) - Method in class org.springframework.samples.petclinic.Pet
 
SimpleJdbcClinic - Class in org.springframework.samples.petclinic.jdbc
A simple JDBC-based implementation of the Clinic interface.
SimpleJdbcClinic() - Constructor for class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
SimpleJdbcClinicMBean - Interface in org.springframework.samples.petclinic.jdbc
Interface that defines a cache refresh operation.
Specialty - Class in org.springframework.samples.petclinic
Models a Vet's specialty (for example, dentistry).
Specialty() - Constructor for class org.springframework.samples.petclinic.Specialty
 
storeOwner(Owner) - Method in interface org.springframework.samples.petclinic.Clinic
Save an Owner to the data store, either inserting or updating it.
storeOwner(Owner) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
storeOwner(Owner) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
storeOwner(Owner) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
storePet(Pet) - Method in interface org.springframework.samples.petclinic.Clinic
Save a Pet to the data store, either inserting or updating it.
storePet(Pet) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
storePet(Pet) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
storePet(Pet) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 
storeVisit(Visit) - Method in interface org.springframework.samples.petclinic.Clinic
Save a Visit to the data store, either inserting or updating it.
storeVisit(Visit) - Method in class org.springframework.samples.petclinic.hibernate.HibernateClinic
 
storeVisit(Visit) - Method in class org.springframework.samples.petclinic.jdbc.SimpleJdbcClinic
 
storeVisit(Visit) - Method in class org.springframework.samples.petclinic.jpa.EntityManagerClinic
 

T

toString() - Method in class org.springframework.samples.petclinic.NamedEntity
 
toString() - Method in class org.springframework.samples.petclinic.Owner
 
trace(JoinPoint.StaticPart) - Method in class org.springframework.samples.petclinic.aspects.AbstractTraceAspect
 
traced() - Method in class org.springframework.samples.petclinic.aspects.AbstractTraceAspect
 

U

UsageLogAspect - Class in org.springframework.samples.petclinic.aspects
Sample AspectJ annotation-style aspect that saves every owner name requested to the clinic.
UsageLogAspect() - Constructor for class org.springframework.samples.petclinic.aspects.UsageLogAspect
 

V

validate(Owner, Errors) - Method in class org.springframework.samples.petclinic.validation.OwnerValidator
 
validate(Pet, Errors) - Method in class org.springframework.samples.petclinic.validation.PetValidator
 
validate(Visit, Errors) - Method in class org.springframework.samples.petclinic.validation.VisitValidator
 
Vet - Class in org.springframework.samples.petclinic
Simple JavaBean domain object representing a veterinarian.
Vet() - Constructor for class org.springframework.samples.petclinic.Vet
 
Vets - Class in org.springframework.samples.petclinic
Simple JavaBean domain object representing a list of veterinarians.
Vets() - Constructor for class org.springframework.samples.petclinic.Vets
 
vetsHandler() - Method in class org.springframework.samples.petclinic.web.ClinicController
Displays all vets.
Visit - Class in org.springframework.samples.petclinic
Simple JavaBean domain object representing a visit.
Visit() - Constructor for class org.springframework.samples.petclinic.Visit
Creates a new instance of Visit for the current date
VisitsAtomView - Class in org.springframework.samples.petclinic.web
A view creating a Atom representation from a list of Visit objects.
VisitsAtomView() - Constructor for class org.springframework.samples.petclinic.web.VisitsAtomView
 
visitsHandler(int) - Method in class org.springframework.samples.petclinic.web.ClinicController
Displays a list of all visits for a specified pet.
VisitValidator - Class in org.springframework.samples.petclinic.validation
Validator for Visit forms.
VisitValidator() - Constructor for class org.springframework.samples.petclinic.validation.VisitValidator
 

W

welcomeHandler() - Method in class org.springframework.samples.petclinic.web.ClinicController
Displays the the welcome view.

A B C D E F G H I L N O P R S T U V W

Copyright © 2010. All Rights Reserved.