REPO-892: removed PersonUpdate class.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@132120 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2016-11-03 11:42:08 +00:00
parent e0005cebcf
commit 1d20c23a67
8 changed files with 168 additions and 525 deletions

View File

@@ -162,16 +162,31 @@ public class Person
return company;
}
public void setCompany(Company company)
{
this.company = company;
}
public String getInstantMessageId()
{
return instantMessageId;
}
public void setInstantMessageId(String instantMessageId)
{
this.instantMessageId = instantMessageId;
}
public String getGoogleId()
{
return googleId;
}
public void setGoogleId(String googleId)
{
this.googleId = googleId;
}
public Long getQuota()
{
return quota;
@@ -187,17 +202,32 @@ public class Person
return description;
}
public void setDescription(String description)
{
this.description = description;
}
@UniqueId
public String getUserName()
{
return userName;
}
public void setUserName(String userName)
{
this.userName = userName;
}
public Boolean isEnabled()
{
return enabled;
}
public void setEnabled(Boolean enabled)
{
this.enabled = enabled;
}
public void setAvatarId(NodeRef avatarId)
{
this.avatarId = avatarId;
@@ -238,36 +268,71 @@ public class Person
return jobTitle;
}
public void setJobTitle(String jobTitle)
{
this.jobTitle = jobTitle;
}
public String getLocation()
{
return location;
}
public void setLocation(String location)
{
this.location = location;
}
public String getTelephone()
{
return telephone;
}
public void setTelephone(String telephone)
{
this.telephone = telephone;
}
public String getMobile()
{
return mobile;
}
public void setMobile(String mobile)
{
this.mobile = mobile;
}
public String getEmail()
{
return email;
}
public void setEmail(String email)
{
this.email = email;
}
public String getSkypeId()
{
return skypeId;
}
public void setSkypeId(String skypeId)
{
this.skypeId = skypeId;
}
public String getUserStatus()
{
return userStatus;
}
public void setUserStatus(String userStatus)
{
this.userStatus = userStatus;
}
public Date getStatusUpdatedAt()
{
return statusUpdatedAt;
@@ -278,6 +343,11 @@ public class Person
return emailNotificationsEnabled;
}
public void setEmailNotificationsEnabled(Boolean emailNotificationsEnabled)
{
this.emailNotificationsEnabled = emailNotificationsEnabled;
}
public String getPassword()
{
return this.password;
@@ -364,5 +434,4 @@ public class Person
Boolean isEmailNotificationsEnabled = isEmailNotificationsEnabled();
addToMap(properties, ContentModel.PROP_EMAIL_FEED_DISABLED, (isEmailNotificationsEnabled == null ? null : !isEmailNotificationsEnabled.booleanValue()));
}
}