Interface UserGroupLocalService

All Superinterfaces:
BaseLocalService, CTService<UserGroup>, PersistedModelLocalService
All Known Implementing Classes:
UserGroupLocalServiceWrapper

Provides the local service interface for UserGroup. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Method Details

    • addGroupUserGroup

      boolean addGroupUserGroup(long groupId, long userGroupId)
    • addGroupUserGroup

      boolean addGroupUserGroup(long groupId, UserGroup userGroup)
    • addGroupUserGroups

      boolean addGroupUserGroups(long groupId, List<UserGroup> userGroups)
    • addGroupUserGroups

      boolean addGroupUserGroups(long groupId, long[] userGroupIds)
    • addOrUpdateUserGroup

      UserGroup addOrUpdateUserGroup(String externalReferenceCode, long userId, long companyId, String name, String description, ServiceContext serviceContext) throws PortalException
      Throws:
      PortalException
    • addTeamUserGroup

      boolean addTeamUserGroup(long teamId, long userGroupId)
    • addTeamUserGroup

      boolean addTeamUserGroup(long teamId, UserGroup userGroup)
    • addTeamUserGroups

      boolean addTeamUserGroups(long teamId, List<UserGroup> userGroups)
    • addTeamUserGroups

      boolean addTeamUserGroups(long teamId, long[] userGroupIds)
    • addUserGroup

      UserGroup addUserGroup(long userId, long companyId, String name, String description, ServiceContext serviceContext) throws PortalException
      Adds a user group.

      This method handles the creation and bookkeeping of the user group, including its resources, metadata, and internal data structures. It is not necessary to make subsequent calls to setup default groups and resources for the user group.

      Parameters:
      userId - the primary key of the user
      companyId - the primary key of the user group's company
      name - the user group's name
      description - the user group's description
      serviceContext - the service context to be applied (optionally null). Can set expando bridge attributes for the user group.
      Returns:
      the user group
      Throws:
      PortalException
    • addUserGroup

      @Indexable(type=REINDEX) UserGroup addUserGroup(UserGroup userGroup)
      Adds the user group to the database. Also notifies the appropriate model listeners.

      Important: Inspect UserGroupLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      userGroup - the user group
      Returns:
      the user group that was added
    • addUserUserGroup

      boolean addUserUserGroup(long userId, long userGroupId) throws PortalException
      Throws:
      PortalException
    • addUserUserGroup

      boolean addUserUserGroup(long userId, UserGroup userGroup) throws PortalException
      Throws:
      PortalException
    • addUserUserGroups

      boolean addUserUserGroups(long userId, List<UserGroup> userGroups) throws PortalException
      Throws:
      PortalException
    • addUserUserGroups

      boolean addUserUserGroups(long userId, long[] userGroupIds) throws PortalException
      Throws:
      PortalException
    • clearGroupUserGroups

      void clearGroupUserGroups(long groupId)
    • clearTeamUserGroups

      void clearTeamUserGroups(long teamId)
    • clearUserUserGroups

      void clearUserUserGroups(long userId)
    • createPersistedModel

      PersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
      Specified by:
      createPersistedModel in interface PersistedModelLocalService
      Throws:
      PortalException
    • createUserGroup

      @Transactional(enabled=false) UserGroup createUserGroup(long userGroupId)
      Creates a new user group with the primary key. Does not add the user group to the database.
      Parameters:
      userGroupId - the primary key for the new user group
      Returns:
      the new user group
    • deleteGroupUserGroup

      void deleteGroupUserGroup(long groupId, long userGroupId)
    • deleteGroupUserGroup

      void deleteGroupUserGroup(long groupId, UserGroup userGroup)
    • deleteGroupUserGroups

      void deleteGroupUserGroups(long groupId, List<UserGroup> userGroups)
    • deleteGroupUserGroups

      void deleteGroupUserGroups(long groupId, long[] userGroupIds)
    • deletePersistedModel

      PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
      Specified by:
      deletePersistedModel in interface PersistedModelLocalService
      Throws:
      PortalException
    • deleteTeamUserGroup

      void deleteTeamUserGroup(long teamId, long userGroupId)
    • deleteTeamUserGroup

      void deleteTeamUserGroup(long teamId, UserGroup userGroup)
    • deleteTeamUserGroups

      void deleteTeamUserGroups(long teamId, List<UserGroup> userGroups)
    • deleteTeamUserGroups

      void deleteTeamUserGroups(long teamId, long[] userGroupIds)
    • deleteUserGroup

      @Indexable(type=DELETE) UserGroup deleteUserGroup(long userGroupId) throws PortalException
      Deletes the user group with the primary key from the database. Also notifies the appropriate model listeners.

      Important: Inspect UserGroupLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      userGroupId - the primary key of the user group
      Returns:
      the user group that was removed
      Throws:
      PortalException - if a user group with the primary key could not be found
    • deleteUserGroup

      @Indexable(type=DELETE) @SystemEvent(action=1, type=1) UserGroup deleteUserGroup(UserGroup userGroup) throws PortalException
      Deletes the user group from the database. Also notifies the appropriate model listeners.

      Important: Inspect UserGroupLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      userGroup - the user group
      Returns:
      the user group that was removed
      Throws:
      PortalException
    • deleteUserGroups

      void deleteUserGroups(long companyId) throws PortalException
      Throws:
      PortalException
    • deleteUserUserGroup

      void deleteUserUserGroup(long userId, long userGroupId)
    • deleteUserUserGroup

      void deleteUserUserGroup(long userId, UserGroup userGroup)
    • deleteUserUserGroups

      void deleteUserUserGroups(long userId, List<UserGroup> userGroups)
    • deleteUserUserGroups

      void deleteUserUserGroups(long userId, long[] userGroupIds)
    • dslQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
      Specified by:
      dslQuery in interface PersistedModelLocalService
    • dslQueryCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
      Specified by:
      dslQueryCount in interface PersistedModelLocalService
    • dynamicQuery

    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
      Performs a dynamic query on the database and returns the matching rows.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the matching rows
    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
      Performs a dynamic query on the database and returns a range of the matching rows.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.UserGroupModelImpl.

      Parameters:
      dynamicQuery - the dynamic query
      start - the lower bound of the range of model instances
      end - the upper bound of the range of model instances (not inclusive)
      Returns:
      the range of matching rows
    • dynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
      Performs a dynamic query on the database and returns an ordered range of the matching rows.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.UserGroupModelImpl.

      Parameters:
      dynamicQuery - the dynamic query
      start - the lower bound of the range of model instances
      end - the upper bound of the range of model instances (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching rows
    • dynamicQueryCount

      @Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the number of rows matching the dynamic query
    • dynamicQueryCount

      @Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      projection - the projection to apply to the query
      Returns:
      the number of rows matching the dynamic query
    • fetchUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup fetchUserGroup(long userGroupId)
    • fetchUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup fetchUserGroup(long companyId, String name)
    • fetchUserGroupByExternalReferenceCode

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup fetchUserGroupByExternalReferenceCode(String externalReferenceCode, long companyId)
    • fetchUserGroupByUuidAndCompanyId

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup fetchUserGroupByUuidAndCompanyId(String uuid, long companyId)
      Returns the user group with the matching UUID and company.
      Parameters:
      uuid - the user group's UUID
      companyId - the primary key of the company
      Returns:
      the matching user group, or null if a matching user group could not be found
    • getActionableDynamicQuery

    • getExportActionableDynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) ExportActionableDynamicQuery getExportActionableDynamicQuery(PortletDataContext portletDataContext)
    • getGroupPrimaryKeys

      @Transactional(propagation=SUPPORTS, readOnly=true) long[] getGroupPrimaryKeys(long userGroupId)
      Returns the groupIds of the groups associated with the user group.
      Parameters:
      userGroupId - the userGroupId of the user group
      Returns:
      long[] the groupIds of groups associated with the user group
    • getGroupUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getGroupUserGroups(long groupId)
    • getGroupUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getGroupUserGroups(long groupId, int start, int end)
    • getGroupUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getGroupUserGroups(long groupId, int start, int end, OrderByComparator<UserGroup> orderByComparator)
    • getGroupUserGroupsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getGroupUserGroupsCount(long groupId)
    • getGroupUserUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getGroupUserUserGroups(long groupId, long userId) throws PortalException
      Throws:
      PortalException
    • getIndexableActionableDynamicQuery

      @Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
    • getOSGiServiceIdentifier

      String getOSGiServiceIdentifier()
      Returns the OSGi service identifier.
      Returns:
      the OSGi service identifier
    • getPersistedModel

      @Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
      Specified by:
      getPersistedModel in interface PersistedModelLocalService
      Throws:
      PortalException
    • getTeamPrimaryKeys

      @Transactional(propagation=SUPPORTS, readOnly=true) long[] getTeamPrimaryKeys(long userGroupId)
      Returns the teamIds of the teams associated with the user group.
      Parameters:
      userGroupId - the userGroupId of the user group
      Returns:
      long[] the teamIds of teams associated with the user group
    • getTeamUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getTeamUserGroups(long teamId)
    • getTeamUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getTeamUserGroups(long teamId, int start, int end)
    • getTeamUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getTeamUserGroups(long teamId, int start, int end, OrderByComparator<UserGroup> orderByComparator)
    • getTeamUserGroupsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getTeamUserGroupsCount(long teamId)
    • getUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup getUserGroup(long userGroupId) throws PortalException
      Returns the user group with the primary key.
      Parameters:
      userGroupId - the primary key of the user group
      Returns:
      the user group
      Throws:
      PortalException - if a user group with the primary key could not be found
    • getUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup getUserGroup(long companyId, String name) throws PortalException
      Returns the user group with the name.
      Parameters:
      companyId - the primary key of the user group's company
      name - the user group's name
      Returns:
      Returns the user group with the name
      Throws:
      PortalException
    • getUserGroupByExternalReferenceCode

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup getUserGroupByExternalReferenceCode(String externalReferenceCode, long companyId) throws PortalException
      Throws:
      PortalException
    • getUserGroupByUuidAndCompanyId

      @Transactional(propagation=SUPPORTS, readOnly=true) UserGroup getUserGroupByUuidAndCompanyId(String uuid, long companyId) throws PortalException
      Returns the user group with the matching UUID and company.
      Parameters:
      uuid - the user group's UUID
      companyId - the primary key of the company
      Returns:
      the matching user group
      Throws:
      PortalException - if a matching user group could not be found
    • getUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserGroups(int start, int end)
      Returns a range of all the user groups.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.UserGroupModelImpl.

      Parameters:
      start - the lower bound of the range of user groups
      end - the upper bound of the range of user groups (not inclusive)
      Returns:
      the range of user groups
    • getUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserGroups(long companyId)
      Returns all the user groups belonging to the company.
      Parameters:
      companyId - the primary key of the user groups' company
      Returns:
      the user groups belonging to the company
    • getUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserGroups(long companyId, String name, int start, int end)
    • getUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserGroups(long companyId, String name, int start, int end, OrderByComparator<UserGroup> orderByComparator)
    • getUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserGroups(long[] userGroupIds) throws PortalException
      Returns all the user groups with the primary keys.
      Parameters:
      userGroupIds - the primary keys of the user groups
      Returns:
      the user groups with the primary keys
      Throws:
      PortalException
    • getUserGroupsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getUserGroupsCount()
      Returns the number of user groups.
      Returns:
      the number of user groups
    • getUserGroupsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getUserGroupsCount(long companyId, String name)
    • getUserPrimaryKeys

      @Transactional(propagation=SUPPORTS, readOnly=true) long[] getUserPrimaryKeys(long userGroupId)
      Returns the userIds of the users associated with the user group.
      Parameters:
      userGroupId - the userGroupId of the user group
      Returns:
      long[] the userIds of users associated with the user group
    • getUserUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserUserGroups(long userId)
    • getUserUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserUserGroups(long userId, int start, int end)
    • getUserUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> getUserUserGroups(long userId, int start, int end, OrderByComparator<UserGroup> orderByComparator)
    • getUserUserGroupsCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int getUserUserGroupsCount(long userId)
    • hasGroupUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasGroupUserGroup(long groupId, long userGroupId)
    • hasGroupUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasGroupUserGroups(long groupId)
    • hasTeamUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasTeamUserGroup(long teamId, long userGroupId)
    • hasTeamUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasTeamUserGroups(long teamId)
    • hasUserUserGroup

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasUserUserGroup(long userId, long userGroupId)
    • hasUserUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) boolean hasUserUserGroups(long userId)
    • search

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> search(long companyId, String keywords, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator<UserGroup> orderByComparator)
      Returns an ordered range of all the user groups that match the keywords.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      companyId - the primary key of the user group's company
      keywords - the keywords (space separated), which may occur in the user group's name or description (optionally null)
      params - the finder params (optionally null). For more information see UserGroupFinder
      start - the lower bound of the range of user groups to return
      end - the upper bound of the range of user groups to return (not inclusive)
      orderByComparator - the comparator to order the user groups (optionally null)
      Returns:
      the matching user groups ordered by comparator orderByComparator
      See Also:
    • search

      @Transactional(propagation=SUPPORTS, readOnly=true) Hits search(long companyId, String keywords, LinkedHashMap<String,Object> params, int start, int end, Sort sort)
      Returns an ordered range of all the user groups that match the keywords, using the indexer. It is preferable to use this method instead of the non-indexed version whenever possible for performance reasons.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      companyId - the primary key of the user group's company
      keywords - the keywords (space separated), which may occur in the user group's name or description (optionally null)
      params - the finder params (optionally null). For more information see com.liferay.user.groups.admin.web.search.UserGroupIndexer
      start - the lower bound of the range of user groups to return
      end - the upper bound of the range of user groups to return (not inclusive)
      sort - the field and direction by which to sort (optionally null)
      Returns:
      the matching user groups ordered by sort
      See Also:
      • com.liferay.user.groups.admin.web.search.UserGroupIndexer
    • search

      @Transactional(propagation=SUPPORTS, readOnly=true) List<UserGroup> search(long companyId, String name, String description, LinkedHashMap<String,Object> params, boolean andOperator, int start, int end, OrderByComparator<UserGroup> orderByComparator)
      Returns an ordered range of all the user groups that match the name and description.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      companyId - the primary key of the user group's company
      name - the user group's name (optionally null)
      description - the user group's description (optionally null)
      params - the finder params (optionally null). For more information see UserGroupFinder
      andOperator - whether every field must match its keywords or just one field
      start - the lower bound of the range of user groups to return
      end - the upper bound of the range of user groups to return (not inclusive)
      orderByComparator - the comparator to order the user groups (optionally null)
      Returns:
      the matching user groups ordered by comparator orderByComparator
      See Also:
    • search

      @Transactional(propagation=SUPPORTS, readOnly=true) Hits search(long companyId, String name, String description, LinkedHashMap<String,Object> params, boolean andSearch, int start, int end, Sort sort)
      Returns an ordered range of all the user groups that match the name and description. It is preferable to use this method instead of the non-indexed version whenever possible for performance reasons.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      companyId - the primary key of the user group's company
      name - the user group's name (optionally null)
      description - the user group's description (optionally null)
      params - the finder params (optionally null). For more information see com.liferay.user.groups.admin.web.search.UserGroupIndexer
      andSearch - whether every field must match its keywords or just one field
      start - the lower bound of the range of user groups to return
      end - the upper bound of the range of user groups to return (not inclusive)
      sort - the field and direction by which to sort (optionally null)
      Returns:
      the matching user groups ordered by sort
      See Also:
    • searchCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int searchCount(long companyId, String keywords, LinkedHashMap<String,Object> params)
      Returns the number of user groups that match the keywords
      Parameters:
      companyId - the primary key of the user group's company
      keywords - the keywords (space separated), which may occur in the user group's name or description (optionally null)
      params - the finder params (optionally null). For more information see UserGroupFinder
      Returns:
      the number of matching user groups
      See Also:
    • searchCount

      @Transactional(propagation=SUPPORTS, readOnly=true) int searchCount(long companyId, String name, String description, LinkedHashMap<String,Object> params, boolean andOperator)
      Returns the number of user groups that match the name and description.
      Parameters:
      companyId - the primary key of the user group's company
      name - the user group's name (optionally null)
      description - the user group's description (optionally null)
      params - the finder params (optionally null). For more information see UserGroupFinder
      andOperator - whether every field must match its keywords or just one field
      Returns:
      the number of matching user groups
      See Also:
    • searchUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) BaseModelSearchResult<UserGroup> searchUserGroups(long companyId, String keywords, LinkedHashMap<String,Object> params, int start, int end, Sort sort) throws PortalException
      Throws:
      PortalException
    • searchUserGroups

      @Transactional(propagation=SUPPORTS, readOnly=true) BaseModelSearchResult<UserGroup> searchUserGroups(long companyId, String name, String description, LinkedHashMap<String,Object> params, boolean andSearch, int start, int end, Sort sort) throws PortalException
      Throws:
      PortalException
    • setGroupUserGroups

      void setGroupUserGroups(long groupId, long[] userGroupIds)
    • setTeamUserGroups

      void setTeamUserGroups(long teamId, long[] userGroupIds)
    • setUserUserGroups

      void setUserUserGroups(long userId, long[] userGroupIds) throws PortalException
      Throws:
      PortalException
    • unsetGroupUserGroups

      void unsetGroupUserGroups(long groupId, long[] userGroupIds)
      Removes the user groups from the group.
      Parameters:
      groupId - the primary key of the group
      userGroupIds - the primary keys of the user groups
    • unsetTeamUserGroups

      void unsetTeamUserGroups(long teamId, long[] userGroupIds)
      Removes the user groups from the team.
      Parameters:
      teamId - the primary key of the team
      userGroupIds - the primary keys of the user groups
    • updateExternalReferenceCode

      @Indexable(type=REINDEX) UserGroup updateExternalReferenceCode(UserGroup userGroup, String externalReferenceCode) throws PortalException
      Throws:
      PortalException
    • updateUserGroup

      UserGroup updateUserGroup(long companyId, long userGroupId, String name, String description, ServiceContext serviceContext) throws PortalException
      Updates the user group.
      Parameters:
      companyId - the primary key of the user group's company
      userGroupId - the primary key of the user group
      name - the user group's name
      description - the user group's description
      serviceContext - the service context to be applied (optionally null). Can set expando bridge attributes for the user group.
      Returns:
      the user group
      Throws:
      PortalException
    • updateUserGroup

      @Indexable(type=REINDEX) UserGroup updateUserGroup(UserGroup userGroup)
      Updates the user group in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

      Important: Inspect UserGroupLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      userGroup - the user group
      Returns:
      the user group that was updated
    • getCTPersistence

      @Transactional(enabled=false) CTPersistence<UserGroup> getCTPersistence()
      Specified by:
      getCTPersistence in interface CTService<UserGroup>
    • getModelClass

      @Transactional(enabled=false) Class<UserGroup> getModelClass()
      Specified by:
      getModelClass in interface CTService<UserGroup>
    • updateWithUnsafeFunction

      @Transactional(rollbackFor=java.lang.Throwable.class) <R, E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<UserGroup>,R,E> updateUnsafeFunction) throws E
      Specified by:
      updateWithUnsafeFunction in interface CTService<UserGroup>
      Throws:
      E extends Throwable