@ProviderType public class GroupServiceWrapper extends Object implements GroupService, ServiceWrapper<GroupService>
GroupService
.GroupService
Constructor and Description |
---|
GroupServiceWrapper(GroupService groupService) |
Modifier and Type | Method and Description |
---|---|
Group |
addGroup(long parentGroupId,
long liveGroupId,
Map<Locale,String> nameMap,
Map<Locale,String> descriptionMap,
int type,
boolean manualMembership,
int membershipRestriction,
String friendlyURL,
boolean site,
boolean inheritContent,
boolean active,
ServiceContext serviceContext) |
Group |
addGroup(long parentGroupId,
long liveGroupId,
Map<Locale,String> nameMap,
Map<Locale,String> descriptionMap,
int type,
boolean manualMembership,
int membershipRestriction,
String friendlyURL,
boolean site,
boolean active,
ServiceContext serviceContext) |
Group |
addGroup(long parentGroupId,
long liveGroupId,
String name,
String description,
int type,
boolean manualMembership,
int membershipRestriction,
String friendlyURL,
boolean site,
boolean active,
ServiceContext serviceContext)
Deprecated.
As of Wilberforce (7.0.x), replaced by
addGroup(long,
long, Map, Map, int, boolean, int, String, boolean, boolean,
ServiceContext) |
void |
addRoleGroups(long roleId,
long[] groupIds)
Adds the groups to the role.
|
void |
checkRemoteStagingGroup(long groupId)
Checks that the current user is permitted to use the group for Remote
Staging.
|
void |
deleteGroup(long groupId)
Deletes the group.
|
void |
disableStaging(long groupId) |
void |
enableStaging(long groupId) |
Group |
getCompanyGroup(long companyId)
Returns the company group.
|
Group |
getGroup(long groupId)
Returns the group with the primary key.
|
Group |
getGroup(long companyId,
String groupKey)
Returns the group with the name.
|
String |
getGroupDisplayURL(long groupId,
boolean privateLayout,
boolean secureConnection)
Returns the group's display URL.
|
List<Group> |
getGroups(long companyId,
long parentGroupId,
boolean site)
Returns all the groups that are direct children of the parent group.
|
List<Group> |
getGroups(long companyId,
long parentGroupId,
boolean site,
int start,
int end)
Returns all the groups that are direct children of the parent group.
|
List<Group> |
getGroups(long companyId,
long parentGroupId,
String name,
boolean site,
int start,
int end) |
int |
getGroupsCount(long companyId,
long parentGroupId,
boolean site)
Returns the number of groups that are direct children of the parent
group.
|
int |
getGroupsCount(long companyId,
long parentGroupId,
String name,
boolean site) |
int |
getGroupsCount(long companyId,
String className,
long parentGroupId)
Returns the number of groups that are direct children of the parent group
with the matching className.
|
List<Group> |
getGtGroups(long gtGroupId,
long companyId,
long parentGroupId,
boolean site,
int size) |
List<Group> |
getManageableSiteGroups(Collection<Portlet> portlets,
int max)
Returns a range of all the site groups for which the user has control
panel access.
|
List<Group> |
getOrganizationsGroups(List<Organization> organizations)
Returns the groups associated with the organizations.
|
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
Group |
getUserGroup(long companyId,
long userId)
Returns the group directly associated with the user.
|
List<Group> |
getUserGroupsGroups(List<UserGroup> userGroups)
Returns the groups associated with the user groups.
|
List<Group> |
getUserOrganizationsGroups(long userId,
int start,
int end)
Returns the range of all groups associated with the user's organization
groups, including the ancestors of the organization groups, unless portal
property
organizations.membership.strict is set to
true . |
List<Group> |
getUserSitesGroups() |
List<Group> |
getUserSitesGroups(long userId,
String[] classNames,
int max)
Returns the user's groups "sites" associated with the group
entity class names, including the Control Panel group if the user is
permitted to view the Control Panel.
|
List<Group> |
getUserSitesGroups(String[] classNames,
int max)
Returns the guest or current user's groups "sites" associated
with the group entity class names, including the Control Panel group if
the user is permitted to view the Control Panel.
|
int |
getUserSitesGroupsCount()
Returns the number of the guest or current user's groups
"sites" associated with the group entity class names, including
the Control Panel group if the user is permitted to view the Control
Panel.
|
GroupService |
getWrappedService() |
boolean |
hasUserGroup(long userId,
long groupId)
Returns
true if the user is associated with the group,
including the user's inherited organizations and user groups. |
List<Group> |
search(long companyId,
long[] classNameIds,
String keywords,
LinkedHashMap<String,Object> params,
int start,
int end,
OrderByComparator<Group> obc) |
List<Group> |
search(long companyId,
long[] classNameIds,
String name,
String description,
LinkedHashMap<String,Object> params,
boolean andOperator,
int start,
int end,
OrderByComparator<Group> obc) |
List<Group> |
search(long companyId,
String name,
String description,
String[] params,
int start,
int end)
Returns an ordered range of all the site groups and organization groups
that match the name and description, optionally including the user's
inherited organization groups and user groups.
|
int |
searchCount(long companyId,
String name,
String description,
String[] params)
Returns the number of groups and organization groups that match the name
and description, optionally including the user's inherited organizations
and user groups.
|
void |
setRoleGroups(long roleId,
long[] groupIds)
Sets the groups associated with the role, removing and adding
associations as necessary.
|
void |
setWrappedService(GroupService groupService) |
void |
unsetRoleGroups(long roleId,
long[] groupIds)
Removes the groups from the role.
|
Group |
updateFriendlyURL(long groupId,
String friendlyURL)
Updates the group's friendly URL.
|
Group |
updateGroup(long groupId,
long parentGroupId,
Map<Locale,String> nameMap,
Map<Locale,String> descriptionMap,
int type,
boolean manualMembership,
int membershipRestriction,
String friendlyURL,
boolean inheritContent,
boolean active,
ServiceContext serviceContext) |
Group |
updateGroup(long groupId,
long parentGroupId,
String name,
String description,
int type,
boolean manualMembership,
int membershipRestriction,
String friendlyURL,
boolean inheritContent,
boolean active,
ServiceContext serviceContext)
Deprecated.
As of Wilberforce (7.0.x), replaced by
updateGroup(long, long, Map, Map, int, boolean, int, String,
boolean, boolean, ServiceContext) |
Group |
updateGroup(long groupId,
String typeSettings)
Updates the group's type settings.
|
void |
updateStagedPortlets(long groupId,
Map<String,String> stagedPortletIds) |
public GroupServiceWrapper(GroupService groupService)
public Group addGroup(long parentGroupId, long liveGroupId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int type, boolean manualMembership, int membershipRestriction, String friendlyURL, boolean site, boolean inheritContent, boolean active, ServiceContext serviceContext) throws PortalException
addGroup
in interface GroupService
PortalException
public Group addGroup(long parentGroupId, long liveGroupId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int type, boolean manualMembership, int membershipRestriction, String friendlyURL, boolean site, boolean active, ServiceContext serviceContext) throws PortalException
addGroup
in interface GroupService
PortalException
@Deprecated public Group addGroup(long parentGroupId, long liveGroupId, String name, String description, int type, boolean manualMembership, int membershipRestriction, String friendlyURL, boolean site, boolean active, ServiceContext serviceContext) throws PortalException
addGroup(long,
long, Map, Map, int, boolean, int, String, boolean, boolean,
ServiceContext)
addGroup
in interface GroupService
parentGroupId
- the primary key of the parent groupliveGroupId
- the primary key of the live groupname
- the entity's namedescription
- the group's description (optionally
null
)type
- the group's type. For more information see GroupConstants
.manualMembership
- whether manual membership is allowed for the
groupmembershipRestriction
- the group's membership restriction. For
more information see GroupConstants
.friendlyURL
- the group's friendlyURL (optionally
null
)site
- whether the group is to be associated with a main siteactive
- whether the group is activeserviceContext
- the service context to be applied (optionally
null
). Can set the asset category IDs and asset
tag names for the group, and can set whether the group is for
stagingPortalException
- if a portal exception occurredpublic void addRoleGroups(long roleId, long[] groupIds) throws PortalException
addRoleGroups
in interface GroupService
roleId
- the primary key of the rolegroupIds
- the primary keys of the groupsPortalException
- if a portal exception occurredpublic void checkRemoteStagingGroup(long groupId) throws PortalException
checkRemoteStagingGroup
in interface GroupService
groupId
- the primary key of the groupPortalException
- if a portal exception occurredpublic void deleteGroup(long groupId) throws PortalException
The group is unstaged and its assets and resources including layouts, membership requests, subscriptions, teams, blogs, bookmarks, calendar events, image gallery, journals, message boards, polls, shopping related entities, and wikis are also deleted.
deleteGroup
in interface GroupService
groupId
- the primary key of the groupPortalException
- if a portal exception occurredpublic void disableStaging(long groupId) throws PortalException
disableStaging
in interface GroupService
PortalException
public void enableStaging(long groupId) throws PortalException
enableStaging
in interface GroupService
PortalException
public Group getCompanyGroup(long companyId) throws PortalException
getCompanyGroup
in interface GroupService
companyId
- the primary key of the companyPortalException
- if a portal exception occurredpublic Group getGroup(long groupId) throws PortalException
getGroup
in interface GroupService
groupId
- the primary key of the groupPortalException
- if a portal exception occurredpublic Group getGroup(long companyId, String groupKey) throws PortalException
getGroup
in interface GroupService
companyId
- the primary key of the companygroupKey
- the group keyPortalException
- if a portal exception occurredpublic String getGroupDisplayURL(long groupId, boolean privateLayout, boolean secureConnection) throws PortalException
getGroupDisplayURL
in interface GroupService
groupId
- the primary key of the groupprivateLayout
- whether the layout set is private to the groupsecureConnection
- whether the generated URL uses a secure
connectionPortalException
- if a group with the primary key could not be
found or if a portal exception occurredpublic List<Group> getGroups(long companyId, long parentGroupId, boolean site) throws PortalException
getGroups
in interface GroupService
companyId
- the primary key of the companyparentGroupId
- the primary key of the parent groupsite
- whether the group is to be associated with a main sitenull
if no matches were
foundPortalException
- if a portal exception occurredpublic List<Group> getGroups(long companyId, long parentGroupId, boolean site, int start, int end) throws PortalException
getGroups
in interface GroupService
companyId
- the primary key of the companyparentGroupId
- the primary key of the parent groupsite
- whether the group is to be associated with a main sitestart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)null
if no matches were
foundPortalException
- if a portal exception occurredpublic List<Group> getGroups(long companyId, long parentGroupId, String name, boolean site, int start, int end) throws PortalException
getGroups
in interface GroupService
PortalException
public int getGroupsCount(long companyId, long parentGroupId, boolean site) throws PortalException
getGroupsCount
in interface GroupService
companyId
- the primary key of the companyparentGroupId
- the primary key of the parent groupsite
- whether the group is to be associated with a main sitePortalException
public int getGroupsCount(long companyId, long parentGroupId, String name, boolean site) throws PortalException
getGroupsCount
in interface GroupService
PortalException
public int getGroupsCount(long companyId, String className, long parentGroupId) throws PortalException
getGroupsCount
in interface GroupService
companyId
- the primary key of the companyclassName
- the class name of the groupparentGroupId
- the primary key of the parent groupPortalException
public List<Group> getGtGroups(long gtGroupId, long companyId, long parentGroupId, boolean site, int size) throws PortalException
getGtGroups
in interface GroupService
PortalException
public List<Group> getManageableSiteGroups(Collection<Portlet> portlets, int max) throws PortalException
getManageableSiteGroups
in interface GroupService
portlets
- the portlets to managemax
- the upper bound of the range of groups to consider (not
inclusive)PortalException
- if a portal exception occurredpublic List<Group> getOrganizationsGroups(List<Organization> organizations) throws PortalException
getOrganizationsGroups
in interface GroupService
organizations
- the organizationsPortalException
- if a portal exception occurredpublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface GroupService
public Group getUserGroup(long companyId, long userId) throws PortalException
getUserGroup
in interface GroupService
companyId
- the primary key of the companyuserId
- the primary key of the userPortalException
- if a portal exception occurredpublic List<Group> getUserGroupsGroups(List<UserGroup> userGroups) throws PortalException
getUserGroupsGroups
in interface GroupService
userGroups
- the user groupsPortalException
- if a portal exception occurredpublic List<Group> getUserOrganizationsGroups(long userId, int start, int end) throws PortalException
organizations.membership.strict
is set to
true
.
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.
getUserOrganizationsGroups
in interface GroupService
userId
- the primary key of the userstart
- the lower bound of the range of groups to considerend
- the upper bound of the range of groups to consider (not
inclusive)PortalException
- if a portal exception occurredpublic List<Group> getUserSitesGroups() throws PortalException
getUserSitesGroups
in interface GroupService
PortalException
public List<Group> getUserSitesGroups(long userId, String[] classNames, int max) throws PortalException
classNames
value of null
includes the user's layout set group,
organization groups, inherited organization groups, and site groups.
getUserSitesGroups
in interface GroupService
userId
- the primary key of the userclassNames
- the group entity class names (optionally
null
). For more information see getUserSitesGroups(long, String[], int)
.max
- the maximum number of groups to returnPortalException
- if a portal exception occurredpublic List<Group> getUserSitesGroups(String[] classNames, int max) throws PortalException
classNames
value of null
includes the user's layout set group,
organization groups, inherited organization groups, and site groups.
getUserSitesGroups
in interface GroupService
classNames
- the group entity class names (optionally
null
). For more information see getUserSitesGroups(long, String[], int)
.max
- the maximum number of groups to returnPortalException
- if a portal exception occurredpublic int getUserSitesGroupsCount() throws PortalException
getUserSitesGroupsCount
in interface GroupService
PortalException
- if a portal exception occurredpublic boolean hasUserGroup(long userId, long groupId) throws PortalException
true
if the user is associated with the group,
including the user's inherited organizations and user groups. System and
staged groups are not included.hasUserGroup
in interface GroupService
userId
- the primary key of the usergroupId
- the primary key of the grouptrue
if the user is associated with the group;
false
otherwisePortalException
- if a portal exception occurredpublic List<Group> search(long companyId, long[] classNameIds, String keywords, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator<Group> obc) throws PortalException
search
in interface GroupService
PortalException
public List<Group> search(long companyId, long[] classNameIds, String name, String description, LinkedHashMap<String,Object> params, boolean andOperator, int start, int end, OrderByComparator<Group> obc) throws PortalException
search
in interface GroupService
PortalException
public List<Group> search(long companyId, String name, String description, String[] params, int start, int end) throws PortalException
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.
search
in interface GroupService
companyId
- the primary key of the companyname
- the group's name (optionally null
)description
- the group's description (optionally
null
)params
- the finder params (optionally null
). To
include the user's inherited organizations and user groups in the
search, add entries having "usersGroups" and
"inherit" as keys mapped to the the user's ID. For more
information see GroupFinder
.start
- the lower bound of the range of groups to returnend
- the upper bound of the range of groups to return (not
inclusive)PortalException
- if a portal exception occurredpublic int searchCount(long companyId, String name, String description, String[] params)
searchCount
in interface GroupService
companyId
- the primary key of the companyname
- the group's name (optionally null
)description
- the group's description (optionally
null
)params
- the finder params (optionally null
). To
include the user's inherited organizations and user groups in the
search, add entries having "usersGroups" and
"inherit" as keys mapped to the the user's ID. For more
information see GroupFinder
.public void setRoleGroups(long roleId, long[] groupIds) throws PortalException
setRoleGroups
in interface GroupService
roleId
- the primary key of the rolegroupIds
- the primary keys of the groupsPortalException
- if a portal exception occurredpublic void unsetRoleGroups(long roleId, long[] groupIds) throws PortalException
unsetRoleGroups
in interface GroupService
roleId
- the primary key of the rolegroupIds
- the primary keys of the groupsPortalException
- if a portal exception occurredpublic Group updateFriendlyURL(long groupId, String friendlyURL) throws PortalException
updateFriendlyURL
in interface GroupService
groupId
- the primary key of the groupfriendlyURL
- the group's new friendlyURL (optionally
null
)PortalException
- if a portal exception occurredpublic Group updateGroup(long groupId, long parentGroupId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int type, boolean manualMembership, int membershipRestriction, String friendlyURL, boolean inheritContent, boolean active, ServiceContext serviceContext) throws PortalException
updateGroup
in interface GroupService
PortalException
@Deprecated public Group updateGroup(long groupId, long parentGroupId, String name, String description, int type, boolean manualMembership, int membershipRestriction, String friendlyURL, boolean inheritContent, boolean active, ServiceContext serviceContext) throws PortalException
updateGroup(long, long, Map, Map, int, boolean, int, String,
boolean, boolean, ServiceContext)
updateGroup
in interface GroupService
groupId
- the primary key of the groupparentGroupId
- the primary key of the parent groupname
- the group's namedescription
- the group's new description (optionally
null
)type
- the group's new type. For more information see GroupConstants
.manualMembership
- whether manual membership is allowed for the
groupmembershipRestriction
- the group's membership restriction. For
more information see GroupConstants
.friendlyURL
- the group's new friendlyURL (optionally
null
)inheritContent
- whether to inherit content from the parent
groupactive
- whether the group is activeserviceContext
- the service context to be applied (optionally
null
). Can set the asset category IDs and asset
tag names for the group.PortalException
- if a portal exception occurredpublic Group updateGroup(long groupId, String typeSettings) throws PortalException
updateGroup
in interface GroupService
groupId
- the primary key of the grouptypeSettings
- the group's new type settings (optionally
null
)PortalException
- if a portal exception occurredpublic void updateStagedPortlets(long groupId, Map<String,String> stagedPortletIds) throws PortalException
updateStagedPortlets
in interface GroupService
PortalException
public GroupService getWrappedService()
getWrappedService
in interface ServiceWrapper<GroupService>
public void setWrappedService(GroupService groupService)
setWrappedService
in interface ServiceWrapper<GroupService>