Uses of Class
com.mycompany.model.City

Packages that use City
com.mycompany.controller Contains JSF managed bean controller classes for the application. 
com.mycompany.model Contains JPA domain model classes and generated JPA Metamodel classes. 
com.mycompany.service Contains interfaces for all services in the application. 
com.mycompany.service.impl Contains CDI-managed service classes implemented as EJB3 stateless session beans. 
 

Uses of City in com.mycompany.controller
 

Methods in com.mycompany.controller that return City
 City SearchController.getCity()
           
 

Methods in com.mycompany.controller that return types with arguments of type City
 java.util.List<City> SearchController.getCitiesForState()
           
 

Methods in com.mycompany.controller with parameters of type City
 void SearchController.setCity(City city)
           
 

Uses of City in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type City
static javax.persistence.metamodel.SetAttribute<ProvinceState,City> ProvinceState_.cities
           
static javax.persistence.metamodel.SingularAttribute<Venue,City> Venue_.city
           
static javax.persistence.metamodel.SingularAttribute<City,java.lang.Double> City_.latitude
           
static javax.persistence.metamodel.SingularAttribute<City,java.lang.Double> City_.longitude
           
static javax.persistence.metamodel.SingularAttribute<City,java.lang.String> City_.name
           
static javax.persistence.metamodel.SingularAttribute<City,ProvinceState> City_.provinceState
           
 

Methods in com.mycompany.model that return City
 City Venue.getCity()
           
 

Methods in com.mycompany.model that return types with arguments of type City
 java.util.Set<City> ProvinceState.getCities()
           
 

Methods in com.mycompany.model with parameters of type City
 void Venue.setCity(City city)
           
 

Method parameters in com.mycompany.model with type arguments of type City
 void ProvinceState.setCities(java.util.Set<City> cities)
           
 

Uses of City in com.mycompany.service
 

Methods in com.mycompany.service that return City
 City CountryService.findCity(java.lang.String name, ProvinceState provinceState)
          Finds a City by name in the ProvinceState.
 City CountryService.findCityById(java.lang.Integer id)
          Finds a City object by ID.
 

Methods in com.mycompany.service that return types with arguments of type City
 java.util.List<City> CountryService.findCitiesByState(ProvinceState provinceState)
          Finds a list of City objects for the given ProvinceState.
 

Methods in com.mycompany.service with parameters of type City
 java.util.List<Event> EventService.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
          Finds a List of Event objects in a City and ProvinceState for a particular EventType and keyword.
 

Uses of City in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return City
 City CountryServiceImpl.findCity(java.lang.String name, ProvinceState provinceState)
          Finds a City by name in the ProvinceState.
 City CountryServiceImpl.findCityById(java.lang.Integer id)
          Finds a City object by ID.
 

Methods in com.mycompany.service.impl that return types with arguments of type City
 java.util.List<City> CountryServiceImpl.findCitiesByState(ProvinceState state)
          Finds a list of City objects for the given ProvinceState.
 

Methods in com.mycompany.service.impl with parameters of type City
 java.util.List<Event> EventServiceImpl.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
          Finds a List of Event objects in a City and ProvinceState for a particular EventType and keyword.