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 SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptioncom.logicaldoc.gui.common.client.beans.GUIFormRetrieved the form specificationcom.logicaldoc.gui.common.client.beans.GUIFormgetFormByDocId(long docId, String locale) Retrieved the form specificationcom.logicaldoc.gui.common.client.beans.GUIInfoRetrieves the general informationscom.logicaldoc.gui.common.client.beans.GUIInfogetInfoByDocId(long docId, String locale) Retrieves the general informationscom.logicaldoc.gui.common.client.beans.GUIDocumentsubmit(com.logicaldoc.gui.common.client.beans.GUIForm form) Retrieves the filled form and generates the corresponding document in the DMS
- 
Method Details- 
getInfocom.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 form
- locale- language of the client
- Returns:
- the general informations
- Throws:
- com.logicaldoc.gui.common.client.ServerException- Error in the server
 
- 
getInfoByDocIdcom.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 form
- locale- language of the client
- Returns:
- the general informations
- Throws:
- com.logicaldoc.gui.common.client.ServerException- Error in the server
 
- 
getFormcom.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 form
- locale- language of the client
- Returns:
- the form instance
- Throws:
- com.logicaldoc.gui.common.client.ServerException- Error in the server
 
- 
getFormByDocIdcom.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 form
- locale- language of the client
- Returns:
- the form instance
- Throws:
- com.logicaldoc.gui.common.client.ServerException- Error in the server
 
- 
submitcom.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
 
 
-