return sessionParams;
}
public static UserProfile createUserProfile(PersonName name, XMLGregorianCalendar bdate, String gender, EmployerInfo employerInfo, Contact homeInfo, Contact businessInfo)
{
UserProfile userProfile = new UserProfile();
userProfile.setName(name);
userProfile.setBdate(bdate);
userProfile.setGender(gender);
userProfile.setEmployerInfo(employerInfo);
userProfile.setHomeInfo(homeInfo);
userProfile.setBusinessInfo(businessInfo);
return userProfile;
}