Class PortalRecordInfo
- java.lang.Object
-
- com.adobe.aemds.guide.service.external.PortalRecordInfo
-
public class PortalRecordInfo extends java.lang.ObjectDefines the information related to form submission, in Forms Portal.- Since:
- 6.3
-
-
Constructor Summary
Constructors Constructor Description PortalRecordInfo()PortalRecordInfo(java.lang.String submitID, java.lang.String submitLink)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPendingSignId()Returns the Forms Portal Pending Sign ID, which is generated when the form is sent to signers for signing.java.lang.StringgetSubmitID()Returns the Forms Portal Submit ID, which is generated, when the form is submitted.java.lang.StringgetSubmitLink()Returns the pdf link (representing submitted form)voidsetPendingSignId(java.lang.String pendingSignId)Sets the Forms Portal Pending Sign ID, which is generated when the form is sent to signers for signing.voidsetSubmitID(java.lang.String submitID)Sets the Forms Portal Submit ID, which is generated, when the form is submitted.voidsetSubmitLink(java.lang.String submitLink)Sets the pdf link (representing submitted form)
-
-
-
Method Detail
-
getSubmitID
public java.lang.String getSubmitID()
Returns the Forms Portal Submit ID, which is generated, when the form is submitted.- Returns:
- String representing Forms Portal Submit ID
-
setSubmitID
public void setSubmitID(java.lang.String submitID)
Sets the Forms Portal Submit ID, which is generated, when the form is submitted.- Parameters:
submitID- String representing Forms Portal Submit ID
-
getSubmitLink
public java.lang.String getSubmitLink()
Returns the pdf link (representing submitted form)- Returns:
- String representing the pdf link
-
setSubmitLink
public void setSubmitLink(java.lang.String submitLink)
Sets the pdf link (representing submitted form)- Parameters:
submitLink- String representing the pdf link
-
getPendingSignId
public java.lang.String getPendingSignId()
Returns the Forms Portal Pending Sign ID, which is generated when the form is sent to signers for signing.- Returns:
- String representing Forms Portal Pending Sign ID
-
setPendingSignId
public void setPendingSignId(java.lang.String pendingSignId)
Sets the Forms Portal Pending Sign ID, which is generated when the form is sent to signers for signing.- Parameters:
pendingSignId- String representing Forms Portal Pending Sign ID
-
-