mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Custom property (UIPropertySheet) support added to User Profile/Edit User Profile screens, New/Edit User summary screen improvements
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7486 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -71,9 +71,16 @@ public class EditUserWizard extends CreateUserWizard
|
||||
this.userName = (String) props.get("userName");
|
||||
this.email = (String) props.get("email");
|
||||
this.companyId = (String) props.get("organizationId");
|
||||
this.organisation = (String) props.get("organization");
|
||||
this.jobtitle = (String) props.get("jobtitle");
|
||||
this.location = (String) props.get("location");
|
||||
this.presenceProvider = (String) props.get("presenceProvider");
|
||||
this.presenceUsername = (String) props.get("presenceUsername");
|
||||
this.sizeQuota = (Long) props.get("sizeQuota");
|
||||
if (this.sizeQuota != null && this.sizeQuota == -1L)
|
||||
{
|
||||
this.sizeQuota = null;
|
||||
}
|
||||
|
||||
if (this.sizeQuota != null)
|
||||
{
|
||||
@@ -188,6 +195,9 @@ public class EditUserWizard extends CreateUserWizard
|
||||
props.put(ContentModel.PROP_HOMEFOLDER, newHomeFolderRef);
|
||||
props.put(ContentModel.PROP_EMAIL, this.email);
|
||||
props.put(ContentModel.PROP_ORGID, this.companyId);
|
||||
props.put(ContentModel.PROP_ORGANIZATION, this.organisation);
|
||||
props.put(ContentModel.PROP_JOBTITLE, this.jobtitle);
|
||||
props.put(ContentModel.PROP_LOCATION, this.location);
|
||||
props.put(ContentModel.PROP_PRESENCEPROVIDER, this.presenceProvider);
|
||||
props.put(ContentModel.PROP_PRESENCEUSERNAME, this.presenceUsername);
|
||||
this.nodeService.setProperties(nodeRef, props);
|
||||
|
Reference in New Issue
Block a user