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