Package com.avoka.tm.svc
Class FormGroupSvc
java.lang.Object
com.avoka.tm.svc.GroupSvc
com.avoka.tm.svc.FormGroupSvc
Provides a Form Group Service which supports create, delete, deleteOrPurge.
Examples
Please find the Form Group service examples below.
Create a Form Group
This example shows how to create a form Group
object.
import com.avoka.tm.svc.* import com.avoka.tm.vo.* Group group = GroupSvc.getFormGroupSvc() .setGroupName("Form1") .setDescription("Description") .setFormWorkGroupFlag(true) .setNewFormFlag(true) .setSavedFormFlag(true) .setCompletedFormFlag(true) .isTaskAssignFlag(true) .createGroup();
- Since:
- 21.11.0
-
Field Summary
Fields inherited from class com.avoka.tm.svc.GroupSvc
completedFormFlag, description, formWorkGroupFlag, groupName, groupType, isTaskAssignFlag, newFormFlag, savedFormFlag
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionisTaskAssignFlag
(boolean isTaskAssignFlag) Set acess control allowing users to reassign tasks to other userssetCompletedFormFlag
(boolean completedFormFlag) Set access control allowing users to view completed form group submissionssetDescription
(String description) Set the description value.setFormWorkGroupFlag
(boolean formWorkGroupFlag) Set share the form with work group members flagsetGroupName
(String groupName) Set the group name value.setNewFormFlag
(boolean newFormFlag) Set access control allowing users to open new formssetSavedFormFlag
(boolean savedFormFlag) Set access control allowing users to open saved work group forms and group assigned form tasksMethods inherited from class com.avoka.tm.svc.GroupSvc
createGroup, deleteGroup, deleteOrPurgeGroup, getAlertGroupSvc, getFormGroupSvc, getJobGroupSvc
-
Constructor Details
-
FormGroupSvc
public FormGroupSvc()
-
-
Method Details
-
setDescription
Set the description value.- Overrides:
setDescription
in classGroupSvc
- Parameters:
description
- the description of the group- Returns:
- the Form Group service
-
setGroupName
Set the group name value.- Overrides:
setGroupName
in classGroupSvc
- Parameters:
groupName
- the name of the group- Returns:
- the Form Group service
-
setFormWorkGroupFlag
Set share the form with work group members flag- Parameters:
formWorkGroupFlag
- share the form with work group members- Returns:
- the Form Group service
-
setNewFormFlag
Set access control allowing users to open new forms- Parameters:
newFormFlag
- access control allowing users to open new forms- Returns:
- the Form Group service
-
setSavedFormFlag
Set access control allowing users to open saved work group forms and group assigned form tasks- Parameters:
savedFormFlag
- access control allowing users to open saved work group forms and group assigned form tasks- Returns:
- the Form Group service
-
setCompletedFormFlag
Set access control allowing users to view completed form group submissions- Parameters:
completedFormFlag
- access control allowing users to view completed form group submissions- Returns:
- the Form Group service
-
isTaskAssignFlag
Set acess control allowing users to reassign tasks to other users- Parameters:
isTaskAssignFlag
- acess control allowing users to reassign tasks to other users- Returns:
- the Form Group service
-