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 SummaryFields inherited from class com.avoka.tm.svc.GroupSvccompletedFormFlag, description, formWorkGroupFlag, groupName, groupType, isTaskAssignFlag, newFormFlag, savedFormFlag
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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.GroupSvccreateGroup, deleteGroup, deleteOrPurgeGroup, getAlertGroupSvc, getFormGroupSvc, getJobGroupSvc
- 
Constructor Details- 
FormGroupSvcpublic FormGroupSvc()
 
- 
- 
Method Details- 
setDescriptionSet the description value.- Overrides:
- setDescriptionin class- GroupSvc
- Parameters:
- description- the description of the group
- Returns:
- the Form Group service
 
- 
setGroupNameSet the group name value.- Overrides:
- setGroupNamein class- GroupSvc
- Parameters:
- groupName- the name of the group
- Returns:
- the Form Group service
 
- 
setFormWorkGroupFlagSet share the form with work group members flag- Parameters:
- formWorkGroupFlag- share the form with work group members
- Returns:
- the Form Group service
 
- 
setNewFormFlagSet access control allowing users to open new forms- Parameters:
- newFormFlag- access control allowing users to open new forms
- Returns:
- the Form Group service
 
- 
setSavedFormFlagSet 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
 
- 
setCompletedFormFlagSet 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
 
- 
isTaskAssignFlagSet 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
 
 
-