Uses of Class
com.mycompany.model.Country

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

Uses of Country in com.mycompany.controller
 

Methods in com.mycompany.controller that return types with arguments of type Country
 java.util.List<Country> VenueController.getCountries()
           
 java.util.List<Country> SignupController.getCountries()
           
 

Methods in com.mycompany.controller with parameters of type Country
 java.util.List<ProvinceState> VenueController.findProvinceStatesByCountry(Country country)
           
 

Uses of Country in com.mycompany.model
 

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

Methods in com.mycompany.model that return Country
 Country Venue.getCountry()
           
 Country User.getCountry()
           
 Country ProvinceState.getCountry()
           
 

Methods in com.mycompany.model with parameters of type Country
 void Venue.setCountry(Country country)
           
 void User.setCountry(Country country)
           
 void ProvinceState.setCountry(Country country)
           
 

Uses of Country in com.mycompany.service
 

Methods in com.mycompany.service that return Country
 Country CountryService.findCountryById(java.lang.Integer id)
          Finds a Country object by ID.
 

Methods in com.mycompany.service that return types with arguments of type Country
 java.util.List<Country> CountryService.getCountries()
          Returns all Country objects.
 

Methods in com.mycompany.service with parameters of type Country
 ProvinceState CountryService.createProvinceState(Country country, java.lang.String value)
          Creates a ProvinceState object for a particular Country.
 java.util.List<ProvinceState> CountryService.findProvinceStatesByCountry(Country country)
          Finds a List of ProvinceState objects for a particular Country.
 ProvinceState CountryService.findStateByName(Country country, java.lang.String name)
          Finds a ProvinceState object by name within a particular Country.
 

Uses of Country in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return Country
 Country CountryServiceImpl.findCountryById(java.lang.Integer id)
           
 

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

Methods in com.mycompany.service.impl with parameters of type Country
 ProvinceState CountryServiceImpl.createProvinceState(Country country, java.lang.String name)
           
 java.util.List<ProvinceState> CountryServiceImpl.findProvinceStatesByCountry(Country country)
           
 ProvinceState CountryServiceImpl.findStateByName(Country country, java.lang.String stateName)