Uses of Interface
biz.janux.geography.PostalAddress

Packages that use PostalAddress
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. 
biz.janux.people The biz.janux.people package represents Persons and Organizations using the key concept of a Party, which makes it possible to treat Person and Organizations interchangeably in the context of a contract, a business relationship or other relationships that may be entered between people and organization. 
 

Uses of PostalAddress in biz.janux.geography
 

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

Methods in biz.janux.geography that return PostalAddress
 PostalAddress PostalAddressDao.load(Integer id)
          Deprecated. Loads a PostalAddress object from persistence using its id
 

Methods in biz.janux.geography that return types with arguments of type PostalAddress
 List<PostalAddress> PostalAddressDaoGeneric.findByCountryAsString()
          Retrieves PostalAddress entities where address.getCountryAsString is not null; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDao.findByCountryAsString()
          Deprecated. Retrieves PostalAddress entities where address.getCountryAsString is not null; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDaoGeneric.findByCountryAsString(Integer numRecords, Integer offset)
          Retrieves PostalAddress entities where address.getCountryAsString is not null; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDao.findByCountryAsString(Integer numRecords, Integer offset)
          Deprecated. Retrieves PostalAddress entities where address.getCountryAsString is not null; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDaoGeneric.findByCountryAsString(String country)
          Retrieves PostalAddress entities where the address.getCountryAsString field matches the country string passed; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDao.findByCountryAsString(String country)
          Deprecated. Retrieves PostalAddress entities where the address.getCountryAsString field matches the country string passed; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDaoGeneric.findByCountryAsString(String country, Integer numRecords, Integer offset)
          Retrieves PostalAddress entities where the address.getCountryAsString field matches the country string passed; this is mostly meant as a utility method that can be used to clean up or convert data
 List<PostalAddress> PostalAddressDao.findByCountryAsString(String country, Integer numRecords, Integer offset)
          Deprecated. Retrieves PostalAddress entities where the address.getCountryAsString field matches the country string passed; this is mostly meant as a utility method that can be used to clean up or convert data
 

Methods in biz.janux.geography with parameters of type PostalAddress
 void GeographyService.setCityStateCountry(PostalAddress aPostalAddress)
          Checks to see whether the PostalAddress provided is associated with Geographic Entities (City, StateProvince and/or Country), based on the contents of the PostalAddress AsString fields
 

Uses of PostalAddress in biz.janux.people
 

Methods in biz.janux.people that return PostalAddress
 PostalAddress Contacteable.getPostalAddress(String kind)
          return the postal address of the kind indicated
 



Copyright © 2005-2013 Janux. All Rights Reserved.