public void setUserProfile(org.exoplatform.services.organization.UserProfile up)
{
if (up == null)
profile = "";
UserProfileImpl impl = (UserProfileImpl)up;
userName = up.getUserName();
XStream xstream = getXStream();
profile = xstream.toXML(impl);
}