@ProviderType public class UserGroupServiceWrapper extends Object implements UserGroupService, ServiceWrapper<UserGroupService>
UserGroupService
.UserGroupService
Constructor and Description |
---|
UserGroupServiceWrapper(UserGroupService userGroupService) |
Modifier and Type | Method and Description |
---|---|
void |
addGroupUserGroups(long groupId,
long[] userGroupIds)
Adds the user groups to the group.
|
void |
addTeamUserGroups(long teamId,
long[] userGroupIds)
Adds the user groups to the team
|
UserGroup |
addUserGroup(String name,
String description)
Deprecated.
As of Newton (6.2.x), replaced by
addUserGroup(String, String, ServiceContext) |
UserGroup |
addUserGroup(String name,
String description,
ServiceContext serviceContext)
Adds a user group.
|
void |
deleteUserGroup(long userGroupId)
Deletes the user group.
|
UserGroup |
fetchUserGroup(long userGroupId)
Fetches the user group with the primary key.
|
List<UserGroup> |
getGtUserGroups(long gtUserGroupId,
long companyId,
long parentUserGroupId,
int size) |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
UserGroup |
getUserGroup(long userGroupId)
Returns the user group with the primary key.
|
UserGroup |
getUserGroup(String name)
Returns the user group with the name.
|
List<UserGroup> |
getUserGroups(long companyId) |
List<UserGroup> |
getUserGroups(long companyId,
String name,
int start,
int end) |
int |
getUserGroupsCount(long companyId,
String name) |
List<UserGroup> |
getUserUserGroups(long userId)
Returns all the user groups to which the user belongs.
|
UserGroupService |
getWrappedService() |
void |
setWrappedService(UserGroupService userGroupService) |
void |
unsetGroupUserGroups(long groupId,
long[] userGroupIds)
Removes the user groups from the group.
|
void |
unsetTeamUserGroups(long teamId,
long[] userGroupIds)
Removes the user groups from the team.
|
UserGroup |
updateUserGroup(long userGroupId,
String name,
String description)
Deprecated.
As of Newton (6.2.x), replaced by
updateUserGroup(long, String, String, ServiceContext) |
UserGroup |
updateUserGroup(long userGroupId,
String name,
String description,
ServiceContext serviceContext)
Updates the user group.
|
public UserGroupServiceWrapper(UserGroupService userGroupService)
public void addGroupUserGroups(long groupId, long[] userGroupIds) throws PortalException
addGroupUserGroups
in interface UserGroupService
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groupsPortalException
public void addTeamUserGroups(long teamId, long[] userGroupIds) throws PortalException
addTeamUserGroups
in interface UserGroupService
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groupsPortalException
@Deprecated public UserGroup addUserGroup(String name, String description) throws PortalException
addUserGroup(String, String, ServiceContext)
This method handles the creation and bookkeeping of the user group, including its resources, metadata, and internal data structures.
addUserGroup
in interface UserGroupService
name
- the user group's namedescription
- the user group's descriptionPortalException
public UserGroup addUserGroup(String name, String description, ServiceContext serviceContext) throws PortalException
This method handles the creation and bookkeeping of the user group, including its resources, metadata, and internal data structures.
addUserGroup
in interface UserGroupService
name
- the user group's namedescription
- the user group's descriptionserviceContext
- the service context to be applied (optionally
null
). Can set expando bridge attributes for the
user group.PortalException
public void deleteUserGroup(long userGroupId) throws PortalException
deleteUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user groupPortalException
public UserGroup fetchUserGroup(long userGroupId) throws PortalException
fetchUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user groupPortalException
public List<UserGroup> getGtUserGroups(long gtUserGroupId, long companyId, long parentUserGroupId, int size)
getGtUserGroups
in interface UserGroupService
public String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface UserGroupService
public UserGroup getUserGroup(long userGroupId) throws PortalException
getUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user groupPortalException
public UserGroup getUserGroup(String name) throws PortalException
getUserGroup
in interface UserGroupService
name
- the user group's namePortalException
public List<UserGroup> getUserGroups(long companyId) throws PortalException
getUserGroups
in interface UserGroupService
PortalException
public List<UserGroup> getUserGroups(long companyId, String name, int start, int end)
getUserGroups
in interface UserGroupService
public int getUserGroupsCount(long companyId, String name)
getUserGroupsCount
in interface UserGroupService
public List<UserGroup> getUserUserGroups(long userId) throws PortalException
getUserUserGroups
in interface UserGroupService
userId
- the primary key of the userPortalException
public void unsetGroupUserGroups(long groupId, long[] userGroupIds) throws PortalException
unsetGroupUserGroups
in interface UserGroupService
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groupsPortalException
public void unsetTeamUserGroups(long teamId, long[] userGroupIds) throws PortalException
unsetTeamUserGroups
in interface UserGroupService
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groupsPortalException
@Deprecated public UserGroup updateUserGroup(long userGroupId, String name, String description) throws PortalException
updateUserGroup(long, String, String, ServiceContext)
updateUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user groupname
- the user group's namedescription
- the the user group's descriptionPortalException
public UserGroup updateUserGroup(long userGroupId, String name, String description, ServiceContext serviceContext) throws PortalException
updateUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user groupname
- the user group's namedescription
- the the user group's descriptionserviceContext
- the service context to be applied (optionally
null
). Can set expando bridge attributes for the
user group.PortalException
public UserGroupService getWrappedService()
getWrappedService
in interface ServiceWrapper<UserGroupService>
public void setWrappedService(UserGroupService userGroupService)
setWrappedService
in interface ServiceWrapper<UserGroupService>