Package com.adobe.aemds.guide.service
Interface GuideLCServiceConnector
-
public interface GuideLCServiceConnector
Interface to pass on the submitted data of adaptive form to a LiveCycle Service. This acts as a connector between adaptive form and LiveCycle Service
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDocumentOfRecordParameterName()
Returns the name of the dor document parameterjava.lang.String
getFileListParameterName()
Returns the name of the parameter corresponding to the list of file attachmentsjava.util.List<java.lang.String>
getServices()
Returns the list of services present in the Livecycle Instancejava.lang.String
getXmlParameterName()
Returns the name of the data xml parameterjava.util.Map
invokeProcess(java.lang.String process, java.util.Map inputParams)
Invokes the given process with parameters provided.
-
-
-
Method Detail
-
invokeProcess
java.util.Map invokeProcess(java.lang.String process, java.util.Map inputParams)
Invokes the given process with parameters provided.- Parameters:
process
- Name of the LC Process to invokeinputParams
- Map containing the parameters to be provided to the LC Process
-
getServices
java.util.List<java.lang.String> getServices()
Returns the list of services present in the Livecycle Instance- Returns:
- the list of services
-
getXmlParameterName
java.lang.String getXmlParameterName()
Returns the name of the data xml parameter- Returns:
- string representing the name of the data xml parameter
-
getFileListParameterName
java.lang.String getFileListParameterName()
Returns the name of the parameter corresponding to the list of file attachments- Returns:
- string representing the name of the file attachment parameter
-
getDocumentOfRecordParameterName
java.lang.String getDocumentOfRecordParameterName()
Returns the name of the dor document parameter- Returns:
- string representing the name of the dor document parameter
-
-