Uses of Class
com.mycompany.model.ProvinceState

Packages that use ProvinceState
com.mycompany.controller   
com.mycompany.model   
com.mycompany.service   
com.mycompany.service.impl   
 

Uses of ProvinceState in com.mycompany.controller
 

Methods in com.mycompany.controller that return ProvinceState
 ProvinceState SearchController.getProvinceState()
           
 

Methods in com.mycompany.controller that return types with arguments of type ProvinceState
 java.util.List<ProvinceState> VenueController.findProvinceStatesByCountry(Country country)
           
 java.util.List<ProvinceState> SearchController.getProvinceStates()
           
 

Methods in com.mycompany.controller with parameters of type ProvinceState
 void SearchController.setProvinceState(ProvinceState state)
           
 

Uses of ProvinceState in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type ProvinceState
static javax.persistence.metamodel.SetAttribute<ProvinceState,City> ProvinceState_.cities
           
static javax.persistence.metamodel.SingularAttribute<ProvinceState,Country> ProvinceState_.country
           
static javax.persistence.metamodel.SingularAttribute<ProvinceState,java.lang.Integer> ProvinceState_.hashCode
           
static javax.persistence.metamodel.SingularAttribute<ProvinceState,java.lang.String> ProvinceState_.name
           
static javax.persistence.metamodel.SingularAttribute<Venue,ProvinceState> Venue_.provinceState
           
static javax.persistence.metamodel.SingularAttribute<City,ProvinceState> City_.provinceState
           
static javax.persistence.metamodel.SetAttribute<Country,ProvinceState> Country_.provinceStates
           
 

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

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

Methods in com.mycompany.model with parameters of type ProvinceState
 void Venue.setProvinceState(ProvinceState state)
           
 void City.setProvinceState(ProvinceState state)
           
 

Method parameters in com.mycompany.model with type arguments of type ProvinceState
 void Country.setProvinceStates(java.util.Set<ProvinceState> states)
           
 

Uses of ProvinceState in com.mycompany.service
 

Methods in com.mycompany.service that return ProvinceState
 ProvinceState CountryService.createProvinceState(Country country, java.lang.String value)
          Creates a ProvinceState object for a particular Country.
 ProvinceState CountryService.findStateById(java.lang.Integer id)
          Finds a ProvinceState object by ID.
 ProvinceState CountryService.findStateByName(Country country, java.lang.String name)
          Finds a ProvinceState object by name within a particular Country.
 

Methods in com.mycompany.service that return types with arguments of type ProvinceState
 java.util.List<ProvinceState> CountryService.findProvinceStatesByCountry(Country country)
          Finds a List of ProvinceState objects for a particular Country.
 java.util.List<ProvinceState> CountryService.getProvinceStates()
          Returns all ProvinceState objects.
 

Methods in com.mycompany.service with parameters of type ProvinceState
 java.util.List<City> CountryService.findCitiesByState(ProvinceState provinceState)
          Finds a list of City objects for the given ProvinceState.
 City CountryService.findCity(java.lang.String name, ProvinceState provinceState)
          Finds a City by name in the ProvinceState.
 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 ProvinceState in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return ProvinceState
 ProvinceState CountryServiceImpl.createProvinceState(Country country, java.lang.String name)
           
 ProvinceState CountryServiceImpl.findStateById(java.lang.Integer id)
           
 ProvinceState CountryServiceImpl.findStateByName(Country country, java.lang.String stateName)
           
 

Methods in com.mycompany.service.impl that return types with arguments of type ProvinceState
 java.util.List<ProvinceState> CountryServiceImpl.findProvinceStatesByCountry(Country country)
           
 java.util.List<ProvinceState> CountryServiceImpl.getProvinceStates()
           
 

Methods in com.mycompany.service.impl with parameters of type ProvinceState
 java.util.List<City> CountryServiceImpl.findCitiesByState(ProvinceState state)
           
 City CountryServiceImpl.findCity(java.lang.String name, ProvinceState provinceState)
           
 java.util.List<Event> EventServiceImpl.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)