Uses of Interface
biz.janux.geography.City

Packages that use City
biz.janux.geography The biz.janux.geography package aims to support the handling and storing of Postal Addresses in the context of managing contact methods for Person and Organizations; in the future, it may be extended to provide functionality for searching by geographic coordinates; the functionality of this package is exposed via the GeographyService Service Facade. 
 

Uses of City in biz.janux.geography
 

Classes in biz.janux.geography with type parameters of type City
 interface CityDaoGeneric<T extends City>
          Data Access Class used to access and manage City entities
 

Methods in biz.janux.geography that return City
 City CityDao.findByName(StateProvince state, String cityName)
          Deprecated. retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City CityDaoGeneric.findByName(StateProvince state, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City CityDao.findByName(String countryCode, String stateCode, String cityName)
          Deprecated. retrieves a City within a country and state by performing a cap-insensitive search by name, and using the ISO country code and a state code, or returns null if a City with that name is not found
 City CityDaoGeneric.findByName(String countryCode, String stateCode, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, and using the ISO country code and a state code, or returns null if a City with that name is not found
 City GeographyService.findCityByName(StateProvince state, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, or returns null if a City with that name is not found
 City GeographyService.findCityByName(String countryCode, String stateCode, String cityName)
          retrieves a City within a country and state by performing a cap-insensitive search by name, and using the ISO country code and a state code, or returns null if a City with that name is not found
 City PostalAddress.getCity()
          The City where the PostalAddress is located; may be null if it is not possible to ascertain the City entity in with this Postal Address is located; in such case, the city may be stored as a String in getCityAsString.
 City CityDao.load(Integer id)
          Deprecated. loads a City object from persistence using its id
 City GeographyService.newCity(StateProvince state, String cityName)
          instantiates a new City within the specified StateProvince, with the name provided
 City CityDao.newCity(StateProvince state, String cityName)
          Deprecated. instantiates a new City within the specified StateProvince, with the name provided
 City CityDaoGeneric.newCity(StateProvince state, String cityName)
          instantiates a new City within the specified StateProvince, with the name provided
 

Methods in biz.janux.geography with parameters of type City
 void GeographyService.saveCity(City city)
          adds a city to the system
 void PostalAddress.setCity(City o)
           
 



Copyright © 2005-2013 Janux. All Rights Reserved.