Package com.logicaldoc.webform.client
Interface WebformService
- All Superinterfaces:
com.google.gwt.user.client.rpc.RemoteService
- All Known Implementing Classes:
WebformServiceImpl
@RemoteServiceRelativePath("webform")
public interface WebformService
extends com.google.gwt.user.client.rpc.RemoteService
Webform service
- Since:
- 8.7
- Author:
- Marco Meschieri - LogicalDOC
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.logicaldoc.gui.common.client.beans.GUIForm
Retrieved the form specificationcom.logicaldoc.gui.common.client.beans.GUIForm
getFormByDocId
(long docId, String locale) Retrieved the form specificationcom.logicaldoc.gui.common.client.beans.GUIInfo
Retrieves the general informationscom.logicaldoc.gui.common.client.beans.GUIInfo
getInfoByDocId
(long docId, String locale) Retrieves the general informationscom.logicaldoc.gui.common.client.beans.GUIDocument
submit
(com.logicaldoc.gui.common.client.beans.GUIForm form) Retrieves the filled form and generates the corresponding document in the DMS
-
Method Details
-
getInfo
com.logicaldoc.gui.common.client.beans.GUIInfo getInfo(String formId, String locale) throws com.logicaldoc.gui.common.client.ServerException Retrieves the general informations- Parameters:
formId
- alternate identifier of the formlocale
- language of the client- Returns:
- the general informations
- Throws:
com.logicaldoc.gui.common.client.ServerException
- Error in the server
-
getInfoByDocId
com.logicaldoc.gui.common.client.beans.GUIInfo getInfoByDocId(long docId, String locale) throws com.logicaldoc.gui.common.client.ServerException Retrieves the general informations- Parameters:
docId
- identifier of the formlocale
- language of the client- Returns:
- the general informations
- Throws:
com.logicaldoc.gui.common.client.ServerException
- Error in the server
-
getForm
com.logicaldoc.gui.common.client.beans.GUIForm getForm(String formId, String locale) throws com.logicaldoc.gui.common.client.ServerException Retrieved the form specification- Parameters:
formId
- alternate identifier of the formlocale
- language of the client- Returns:
- the form instance
- Throws:
com.logicaldoc.gui.common.client.ServerException
- Error in the server
-
getFormByDocId
com.logicaldoc.gui.common.client.beans.GUIForm getFormByDocId(long docId, String locale) throws com.logicaldoc.gui.common.client.ServerException Retrieved the form specification- Parameters:
docId
- identifier of the formlocale
- language of the client- Returns:
- the form instance
- Throws:
com.logicaldoc.gui.common.client.ServerException
- Error in the server
-
submit
com.logicaldoc.gui.common.client.beans.GUIDocument submit(com.logicaldoc.gui.common.client.beans.GUIForm form) throws com.logicaldoc.gui.common.client.ServerException Retrieves the filled form and generates the corresponding document in the DMS- Parameters:
form
- The form filled by the user- Returns:
- the generated document
- Throws:
com.logicaldoc.gui.common.client.ServerException
- Error in the server
-