|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.UserGroupServiceWrapper
@ProviderType public class UserGroupServiceWrapper
Provides a wrapper for UserGroupService
.
UserGroupService
Constructor Summary | |
---|---|
UserGroupServiceWrapper(UserGroupService userGroupService)
|
Method Summary | |
---|---|
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 6.2.0, 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. |
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
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> |
getUserUserGroups(long userId)
Returns all the user groups to which the user belongs. |
UserGroupService |
getWrappedService()
|
UserGroupService |
getWrappedUserGroupService()
Deprecated. As of 6.1.0, replaced by getWrappedService() |
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setWrappedService(UserGroupService userGroupService)
|
void |
setWrappedUserGroupService(UserGroupService userGroupService)
Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portal.service.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 6.2.0, replaced by updateUserGroup(long,
String, String, ServiceContext) |
UserGroup |
updateUserGroup(long userGroupId,
String name,
String description,
ServiceContext serviceContext)
Updates the user group. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public UserGroupServiceWrapper(UserGroupService userGroupService)
Method Detail |
---|
public String getBeanIdentifier()
getBeanIdentifier
in interface UserGroupService
public void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier
in interface UserGroupService
beanIdentifier
- the Spring bean ID for this beanpublic void addGroupUserGroups(long groupId, long[] userGroupIds) throws PortalException, SystemException
addGroupUserGroups
in interface UserGroupService
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groups
PortalException
- if a group or user group with the primary key
could not be found, or if the user did not have permission to
assign group members
SystemException
- if a system exception occurredpublic void addTeamUserGroups(long teamId, long[] userGroupIds) throws PortalException, SystemException
addTeamUserGroups
in interface UserGroupService
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groups
PortalException
- if a team or user group with the primary key
could not be found, or if the user did not have permission to
assign team members
SystemException
- if a system exception occurredpublic UserGroup addUserGroup(String name, String description) throws PortalException, SystemException
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 description
PortalException
- if the user group's information was invalid
or if the user did not have permission to add the user group
SystemException
- if a system exception occurredpublic UserGroup addUserGroup(String name, String description, ServiceContext serviceContext) throws PortalException, SystemException
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
- if the user group's information was invalid or if
the user did not have permission to add the user group
SystemException
- if a system exception occurredpublic void deleteUserGroup(long userGroupId) throws PortalException, SystemException
deleteUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user group
PortalException
- if a user group with the primary key could not be
found, if the user did not have permission to delete the user
group, or if the user group had a workflow in approved status
SystemException
- if a system exception occurredpublic UserGroup getUserGroup(long userGroupId) throws PortalException, SystemException
getUserGroup
in interface UserGroupService
userGroupId
- the primary key of the user group
PortalException
- if a user group with the primary key could not be
found or if the user did not have permission to view the user
group
SystemException
- if a system exception occurredpublic UserGroup getUserGroup(String name) throws PortalException, SystemException
getUserGroup
in interface UserGroupService
name
- the user group's name
PortalException
- if a user group with the name could not be found
or if the user did not have permission to view the user group
SystemException
- if a system exception occurredpublic List<UserGroup> getUserUserGroups(long userId) throws PortalException, SystemException
getUserUserGroups
in interface UserGroupService
userId
- the primary key of the user
PortalException
- if the current user did not have permission to
view the user or any one of the user group members
SystemException
- if a system exception occurredpublic void unsetGroupUserGroups(long groupId, long[] userGroupIds) throws PortalException, SystemException
unsetGroupUserGroups
in interface UserGroupService
groupId
- the primary key of the groupuserGroupIds
- the primary keys of the user groups
PortalException
- if the user did not have permission to assign
group members
SystemException
- if a system exception occurredpublic void unsetTeamUserGroups(long teamId, long[] userGroupIds) throws PortalException, SystemException
unsetTeamUserGroups
in interface UserGroupService
teamId
- the primary key of the teamuserGroupIds
- the primary keys of the user groups
PortalException
- if the user did not have permission to assign
team members
SystemException
- if a system exception occurredpublic UserGroup updateUserGroup(long userGroupId, String name, String description) throws PortalException, SystemException
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 description
PortalException
- if a user group with the primary key was not
found, if the new information was invalid, or if the user did
not have permission to update the user group information
SystemException
- if a system exception occurredpublic UserGroup updateUserGroup(long userGroupId, String name, String description, ServiceContext serviceContext) throws PortalException, SystemException
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
- if a user group with the primary key was not
found, if the new information was invalid, or if the user did not
have permission to update the user group information
SystemException
- if a system exception occurredpublic UserGroupService getWrappedUserGroupService()
getWrappedService()
public void setWrappedUserGroupService(UserGroupService userGroupService)
setWrappedService(com.liferay.portal.service.UserGroupService)
public UserGroupService getWrappedService()
getWrappedService
in interface ServiceWrapper<UserGroupService>
public void setWrappedService(UserGroupService userGroupService)
setWrappedService
in interface ServiceWrapper<UserGroupService>
|
Liferay 6.2-ce-ga5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |