* Methode Sauberimplementiern und die Geschäftslogic in den Core auslagern
*
* Remote Interface
*
*/
AddressesBean addresses = new AddressesBean();
Address startAddress = new Address();
// ClientGlobals.getUser().getContact().getAddress() = null ??;
startAddress.setStreet(ClientGlobals.getCompany().getStreet());
startAddress.setZip(ClientGlobals.getCompany().getZip());
startAddress.setCity(ClientGlobals.getCompany().getCity());
this.addInfo("Luftline: " + addresses.getDistanceAsKM(startAddress, address) + "km");
}
}