mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged HEAD (5.2) to 5.2.N (5.2.1)
126547 jkaabimofrad: Merged FILE-FOLDER-API (5.2.0) to HEAD (5.2) 124158 jkaabimofrad: SFS-405, RA-778: (WIP) - Added quick-share client registry config. - Modified the send shared-link email API, based on the revised acceptance criteria. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@126893 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -28,32 +28,20 @@ import java.util.List;
|
||||
*/
|
||||
public class QuickShareLinkEmailRequest extends Target
|
||||
{
|
||||
private String templateId;
|
||||
private String sharedNodeUrl;
|
||||
private String client;
|
||||
private String message;
|
||||
private String locale;
|
||||
private List<String> recipientEmails;
|
||||
private Boolean isSendFromDefaultEmail;
|
||||
private Boolean isIgnoreSendFailure;
|
||||
|
||||
public String getTemplateId()
|
||||
public String getClient()
|
||||
{
|
||||
return templateId;
|
||||
return client;
|
||||
}
|
||||
|
||||
public void setTemplateId(String templateId)
|
||||
public QuickShareLinkEmailRequest setClient(String client)
|
||||
{
|
||||
this.templateId = templateId;
|
||||
}
|
||||
|
||||
public String getSharedNodeUrl()
|
||||
{
|
||||
return sharedNodeUrl;
|
||||
}
|
||||
|
||||
public void setSharedNodeUrl(String sharedNodeUrl)
|
||||
{
|
||||
this.sharedNodeUrl = sharedNodeUrl;
|
||||
this.client = client;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getMessage()
|
||||
@@ -86,37 +74,14 @@ public class QuickShareLinkEmailRequest extends Target
|
||||
this.recipientEmails = recipientEmails;
|
||||
}
|
||||
|
||||
public Boolean getIsSendFromDefaultEmail()
|
||||
{
|
||||
return isSendFromDefaultEmail;
|
||||
}
|
||||
|
||||
public void setIsSendFromDefaultEmail(Boolean isSendFromDefaultEmail)
|
||||
{
|
||||
this.isSendFromDefaultEmail = isSendFromDefaultEmail;
|
||||
}
|
||||
|
||||
public Boolean getIsIgnoreSendFailure()
|
||||
{
|
||||
return isIgnoreSendFailure;
|
||||
}
|
||||
|
||||
public void setIsIgnoreSendFailure(Boolean isIgnoreSendFailure)
|
||||
{
|
||||
this.isIgnoreSendFailure = isIgnoreSendFailure;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
final StringBuilder sb = new StringBuilder(250);
|
||||
sb.append("QuickShareLinkEmailRequest [templateId='").append(templateId)
|
||||
.append(", sharedNodeUrl='").append(sharedNodeUrl)
|
||||
.append(", message='").append(message)
|
||||
.append(", locale='").append(locale)
|
||||
sb.append("QuickShareLinkEmailRequest [client=").append(client)
|
||||
.append(", message=").append(message)
|
||||
.append(", locale=").append(locale)
|
||||
.append(", recipientEmails=").append(recipientEmails)
|
||||
.append(", isSendFromDefaultEmail").append(isSendFromDefaultEmail)
|
||||
.append(", isIgnoreSendFailure=").append(isIgnoreSendFailure)
|
||||
.append(']');
|
||||
return sb.toString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user