* accountInfoOpSet belongs.
*/
public static String getAddress(
OperationSetServerStoredAccountInfo accountInfoOpSet)
{
AddressDetail address = null;
Iterator<GenericDetail> addressDetails
= accountInfoOpSet.getDetails(AddressDetail.class);
if (addressDetails.hasNext())
address = (AddressDetail) addressDetails.next();
if(address == null)
return null;
return address.getAddress();
}