Uses of Class
com.avoka.fc.core.entity.Group
Package
Description
Provides the Data Access Objects used by SmartForm Manager.
Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.
Provides the SmartForm Manager service classes.
Provides the SmartForm Manager service class implementation.
Provides web automated test services.
Provides REST Service API servlet classes.
Provides Value Object persistent entity classes.
-
Uses of Group in com.avoka.fc.core.dao
Modifier and TypeMethodDescriptionGroupDao.createUpdateFormGroup
(String groupName, String description, boolean formWorkGroupFlag, boolean newFormFlag, boolean savedFormFlag, boolean completedFormFlag) Create a Form Group for the given name and group attributes.GroupDao.getGroupForName
(String name) Return the group with the specified nameGroupDao.getGroupForPK
(Object id) Return the group with the specified OIDModifier and TypeMethodDescriptionGroupDao.getCompletedFormGroupsForUser
(UserAccount userAccount) Return the list of completed form groups that a user is a member of.GroupDao.getFormGroupList()
The list of all groups ordered by group nameGroupDao.getGroupList()
The list of all groups ordered by group nameGroupDao.getGroupList
(String keyword) Return the list of groups matching the specified search criteria, ordered by group name.GroupDao.getGroupList
(String keyword, String type) Return the list of groups matching the specified search criteria, ordered by group nameGroupDao.getGroupsForUser
(UserAccount userAccount, String groupType) Return the list of form groups that a user is a member of.GroupDao.getJobGroupList()
The list of all job groups ordered by group nameGroupDao.getNewFormGroupsForUser
(UserAccount userAccount) Return the list of new form groups that a user is a member of.GroupDao.getPurgeJobGroupList
(int fetchLimit) The list of job groups which marked to purge and there is no job associated with itGroupDao.getPurgeSubmissionGroupList
(int fetchLimit) The list of Submission groups which marked to purge and there is no submission associated with itGroupDao.getSavedFormGroupsForUser
(UserAccount userAccount) Return the list of saved form groups that a user is a member of.Modifier and TypeMethodDescriptionvoid
GroupDao.addGroupToSubmission
(Group group, Submission submission) Add the specified group to the submission. -
Uses of Group in com.avoka.fc.core.entity.auto
Modifier and TypeFieldDescriptionstatic final org.apache.cayenne.exp.Property<Group>
_FormGroup.GROUP
Provides the 'GROUP' property.static final org.apache.cayenne.exp.Property<Group>
_JobGroup.GROUP
Provides the 'GROUP' property.static final org.apache.cayenne.exp.Property<Group>
_SubmissionGroup.GROUP
Provides the 'GROUP' property.static final org.apache.cayenne.exp.Property<Group>
_UserGroup.GROUP
Provides the 'GROUP' property. -
Uses of Group in com.avoka.fc.core.service
Modifier and TypeFieldDescriptionSubmissionTaskService.FormTaskParam.group
The group to assign the task to (must be specified if user is not).Modifier and TypeFieldDescriptionSubmissionTaskService.FormTaskParam.groups
The set of groups to assign the task to (must be specified if user is not).Modifier and TypeMethodDescriptionIAuthenticationService.getUserFormGroups
(HttpServletRequest request) Gets the user form groups.IAuthenticationService.getUserJobGroups
(HttpServletRequest request) Gets the user job groups.Modifier and TypeMethodDescriptionboolean
UserService.addUserToGroup
(UserAccount user, Group group) Add a user to a group.TaskService.createFormTask
(Form form, String taskSubject, String taskMessage, Integer sequence, UserAccount user, Group group, String formDataXml, String inputXmlData, Double latitude, Double longitude, String address, Date datetimeScheduled, Date datetimeExpiry, boolean sendEmailFlag, String emailSubject, String emailMessage, boolean userDeletableFlag) Create a form task for a user or a user group to do.TaskService.createFormTask
(Form form, String taskSubject, String taskMessage, Integer sequence, UserAccount user, Group group, String formDataXml, String inputXmlData, Double latitude, Double longitude, Date datetimeScheduled, Date datetimeExpiry, boolean sendEmailFlag, String emailSubject, String emailMessage, boolean userDeletableFlag) Create a form task for a user or a user group to do.TaskService.createReviewTask
(Submission reviewSubmission, Form form, String taskSubject, String taskMessage, Integer sequence, UserAccount user, Group group, String formDataXml, Double latitude, Double longitude, String address, Date datetimeScheduled, Date datetimeExpiry, boolean sendEmailFlag, String emailSubject, String emailMessage, boolean userDeletableFlag) Create a review task for a user or a user group to do.TaskService.createReviewTask
(Submission reviewSubmission, Form form, String taskSubject, String taskMessage, Integer sequence, UserAccount user, Group group, String formDataXml, Double latitude, Double longitude, Date datetimeScheduled, Date datetimeExpiry, boolean sendEmailFlag, String emailSubject, String emailMessage, boolean userDeletableFlag) Create a review task for a user or a user group to do.boolean
UserService.removeUserFromGroup
(UserAccount user, Group group) Remove a user from a group.void
SubmissionService.setTaskAssigneeGroup
(Submission submission, Group group) Update the assignee group for a task submission. -
Uses of Group in com.avoka.fc.core.service.impl
Modifier and TypeMethodDescriptionAuthenticationServiceImpl.getUserFormGroups
(HttpServletRequest request) Gets the user form groups.AuthenticationServiceImpl.getUserJobGroups
(HttpServletRequest request) Gets the user job groups. -
Uses of Group in com.avoka.fc.core.service.test
Modifier and TypeMethodDescriptionMockEntityService.createFormGroup
(String name) Create a new form group with the given name.MockEntityService.createGroup
(String name, String type) Create a new group with the given name and type.MockEntityService.createJobGroup
(String name) Create a new job group with the given name.Modifier and TypeMethodDescriptionvoid
MockEntityService.addFormToGroup
(Form form, Group group) Add a form to a group.MockEntityUtils.addSubmissionToGroup
(Submission submission, Group group) Create a submission group association.MockEntityService.addUserToGroup
(Group group, UserAccount userAccount, Date expiryDatetime) Create a user group association. -
Uses of Group in com.avoka.fc.core.servlet.rest
-
Uses of Group in com.avoka.tm.vo