Uses of Interface
biz.janux.geography.Country

Packages that use Country
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 Country in biz.janux.geography
 

Classes in biz.janux.geography with type parameters of type Country
 interface CountryDaoGeneric<T extends Country>
          Performs commonly requested operations on Country objects
 

Methods in biz.janux.geography that return Country
 Country CountryDaoGeneric.findByCode(String code)
          retrieves a Country using a standard ISO code, or returns null if a Country with that code is not found
 Country CountryDao.findByCode(String code)
          Deprecated. retrieves a Country using a standard ISO code, or returns null if a Country with that code is not found
 Country CountryDaoGeneric.findByName(String code)
          attempts to find a Country with the name provided TODO: this method needs to be internationalized
 Country CountryDao.findByName(String code)
          Deprecated. attempts to find a Country with the name provided TODO: this method needs to be internationalized
 Country GeographyService.findCountryByCode(String code)
          retrieves a Country using a standard ISO code, or returns null if a Country with that code is not found
 Country GeographyService.findCountryByName(String name)
          retrieves a Country by performing a cap-insensitive search by name, or returns null if a Country with that name is not found
 Country City.getCountry()
          shortcut for getState().getCountry()
 Country StateProvince.getCountry()
          the Country containing this State/Province, must be not null
 Country PostalAddress.getCountry()
          Country in which this PostalAddress is located; if getCity or getStateProvince fields are not null, this Country must be the same as the one in which the City and StateProvince are located
 Country CountryDao.load(Integer id)
          Deprecated. loads a Country object from persistence using its id
 Country GeographyService.loadCountry(Integer id)
          loads a Country object from persistence using its id
 

Methods in biz.janux.geography that return types with arguments of type Country
 Map<String,Country> CountryDaoGeneric.loadAll()
          Returns a map of all Countries in the system, keyed by ISO code; the keys of the map may be ordered by the implementation (for example according to Country.getSortOrder())
 Map<String,Country> CountryDao.loadAll()
          Deprecated. Returns a map of all Countries in the system, keyed by ISO code; the keys of the map may be ordered by the implementation (for example according to Country.getSortOrder())
 

Methods in biz.janux.geography with parameters of type Country
 void City.setCountry(Country o)
           
 void StateProvince.setCountry(Country c)
           
 void PostalAddress.setCountry(Country o)
           
 



Copyright © 2005-2013 Janux. All Rights Reserved.