IUserProfile profile = _profileManager.getDefaultProfileType();
ITextAttribute fullnameAttr = (ITextAttribute) profile.getAttribute("fullname");
fullnameAttr.setText(nome, null);
ITextAttribute emailAttr = (ITextAttribute) profile.getAttribute("email");
emailAttr.setText(email, null);
BooleanAttribute boolean1 = (BooleanAttribute) profile.getAttribute("boolean1");
boolean1.setBooleanValue(new Boolean(cat1));
BooleanAttribute boolean2 = (BooleanAttribute) profile.getAttribute("boolean2");
boolean2.setBooleanValue(new Boolean(cat2));
return profile;
}