Interface FormService
-
- All Superinterfaces:
com.google.gwt.user.client.rpc.RemoteService
@RemoteServiceRelativePath("form") public interface FormService extends com.google.gwt.user.client.rpc.RemoteService
The client side stub for the Form Service. This service gives all needed methods to handle the forms.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FormService.Instance
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GUIDocument
create(GUIDocument form)
Creates a new formvoid
delete(long formId)
Deletes a form
-
-
-
Method Detail
-
create
GUIDocument create(GUIDocument form) throws ServerException
Creates a new form- Parameters:
form
- the form to create- Returns:
- the created form
- Throws:
ServerException
- an error happened in the server application
-
delete
void delete(long formId) throws ServerException
Deletes a form- Parameters:
formId
- identifier of the form to delete- Throws:
ServerException
- an error happened in the server application
-
-