* accountInfoOpSet belongs.
*/
public static String getGender(
OperationSetServerStoredAccountInfo accountInfoOpSet)
{
GenderDetail gender = null;
Iterator<GenericDetail> genderDetails
= accountInfoOpSet.getDetails(GenderDetail.class);
if (genderDetails.hasNext())
gender = (GenderDetail) genderDetails.next();
if(gender == null)
return null;
return gender.getGender();
}