|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.UserGroupLocalServiceUtil
public class UserGroupLocalServiceUtil
The utility for the user group local service. This utility wraps com.liferay.portal.service.impl.UserGroupLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server.
This is a local service. 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.
UserGroupLocalService,
UserGroupLocalServiceBaseImpl,
com.liferay.portal.service.impl.UserGroupLocalServiceImpl| Constructor Summary | |
|---|---|
UserGroupLocalServiceUtil()
|
|
| Method Summary | |
|---|---|
static void |
addGroupUserGroups(long groupId,
long[] userGroupIds)
|
static void |
addTeamUserGroups(long teamId,
long[] userGroupIds)
|
static UserGroup |
addUserGroup(long userId,
long companyId,
String name,
String description)
|
static UserGroup |
addUserGroup(UserGroup userGroup)
Adds the user group to the database. |
static void |
clearUserUserGroups(long userId)
|
static void |
copyUserGroupLayouts(long[] userGroupIds,
long userId)
|
static void |
copyUserGroupLayouts(long userGroupId,
long userId)
|
static void |
copyUserGroupLayouts(long userGroupId,
long[] userIds)
|
static UserGroup |
createUserGroup(long userGroupId)
Creates a new user group with the primary key. |
static void |
deleteUserGroup(long userGroupId)
Deletes the user group with the primary key from the database. |
static void |
deleteUserGroup(UserGroup userGroup)
Deletes the user group from the database. |
static List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
static List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
static List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows that match the dynamic query. |
static String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
static PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
static UserGroupLocalService |
getService()
|
static UserGroup |
getUserGroup(long userGroupId)
Returns the user group with the primary key. |
static UserGroup |
getUserGroup(long companyId,
String name)
|
static List<UserGroup> |
getUserGroups(int start,
int end)
Returns a range of all the user groups. |
static List<UserGroup> |
getUserGroups(long companyId)
|
static List<UserGroup> |
getUserGroups(long[] userGroupIds)
|
static int |
getUserGroupsCount()
Returns the number of user groups. |
static List<UserGroup> |
getUserUserGroups(long userId)
|
static boolean |
hasGroupUserGroup(long groupId,
long userGroupId)
|
static boolean |
hasTeamUserGroup(long teamId,
long userGroupId)
|
static List<UserGroup> |
search(long companyId,
String name,
String description,
LinkedHashMap<String,Object> params,
int start,
int end,
OrderByComparator obc)
|
static int |
searchCount(long companyId,
String name,
String description,
LinkedHashMap<String,Object> params)
|
static void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setService(UserGroupLocalService service)
|
static void |
setUserUserGroups(long userId,
long[] userGroupIds)
|
static void |
unsetGroupUserGroups(long groupId,
long[] userGroupIds)
|
static void |
unsetTeamUserGroups(long teamId,
long[] userGroupIds)
|
static UserGroup |
updateUserGroup(long companyId,
long userGroupId,
String name,
String description)
|
static UserGroup |
updateUserGroup(UserGroup userGroup)
Updates the user group in the database or adds it if it does not yet exist. |
static UserGroup |
updateUserGroup(UserGroup userGroup,
boolean merge)
Updates the user group in the database or adds it if it does not yet exist. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UserGroupLocalServiceUtil()
| Method Detail |
|---|
public static UserGroup addUserGroup(UserGroup userGroup)
throws SystemException
userGroup - the user group
SystemException - if a system exception occurredpublic static UserGroup createUserGroup(long userGroupId)
userGroupId - the primary key for the new user group
public static void deleteUserGroup(long userGroupId)
throws PortalException,
SystemException
userGroupId - the primary key of the user group
PortalException - if a user group with the primary key could not be found
SystemException - if a system exception occurred
public static void deleteUserGroup(UserGroup userGroup)
throws PortalException,
SystemException
userGroup - the user group
PortalException
SystemException - if a system exception occurred
public static List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query
SystemException - if a system exception occurred
public static List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
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.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)
SystemException - if a system exception occurred
public static List dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
public static long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query
SystemException - if a system exception occurred
public static UserGroup getUserGroup(long userGroupId)
throws PortalException,
SystemException
userGroupId - the primary key of the user group
PortalException - if a user group with the primary key could not be found
SystemException - if a system exception occurred
public static PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException,
SystemException
PortalException
SystemException
public static List<UserGroup> getUserGroups(int start,
int end)
throws SystemException
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.
start - the lower bound of the range of user groupsend - the upper bound of the range of user groups (not inclusive)
SystemException - if a system exception occurred
public static int getUserGroupsCount()
throws SystemException
SystemException - if a system exception occurred
public static UserGroup updateUserGroup(UserGroup userGroup)
throws SystemException
userGroup - the user group
SystemException - if a system exception occurred
public static UserGroup updateUserGroup(UserGroup userGroup,
boolean merge)
throws SystemException
userGroup - the user groupmerge - whether to merge the user group with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
SystemException - if a system exception occurredpublic static String getBeanIdentifier()
public static void setBeanIdentifier(String beanIdentifier)
beanIdentifier - the Spring bean ID for this bean
public static void addGroupUserGroups(long groupId,
long[] userGroupIds)
throws SystemException
SystemException
public static void addTeamUserGroups(long teamId,
long[] userGroupIds)
throws SystemException
SystemException
public static UserGroup addUserGroup(long userId,
long companyId,
String name,
String description)
throws PortalException,
SystemException
PortalException
SystemException
public static void clearUserUserGroups(long userId)
throws SystemException
SystemException
public static void copyUserGroupLayouts(long userGroupId,
long[] userIds)
throws PortalException,
SystemException
PortalException
SystemException
public static void copyUserGroupLayouts(long[] userGroupIds,
long userId)
throws PortalException,
SystemException
PortalException
SystemException
public static void copyUserGroupLayouts(long userGroupId,
long userId)
throws PortalException,
SystemException
PortalException
SystemException
public static UserGroup getUserGroup(long companyId,
String name)
throws PortalException,
SystemException
PortalException
SystemException
public static List<UserGroup> getUserGroups(long companyId)
throws SystemException
SystemException
public static List<UserGroup> getUserGroups(long[] userGroupIds)
throws PortalException,
SystemException
PortalException
SystemException
public static List<UserGroup> getUserUserGroups(long userId)
throws SystemException
SystemException
public static boolean hasGroupUserGroup(long groupId,
long userGroupId)
throws SystemException
SystemException
public static boolean hasTeamUserGroup(long teamId,
long userGroupId)
throws SystemException
SystemException
public static List<UserGroup> search(long companyId,
String name,
String description,
LinkedHashMap<String,Object> params,
int start,
int end,
OrderByComparator obc)
throws SystemException
SystemException
public static int searchCount(long companyId,
String name,
String description,
LinkedHashMap<String,Object> params)
throws SystemException
SystemException
public static void setUserUserGroups(long userId,
long[] userGroupIds)
throws PortalException,
SystemException
PortalException
SystemException
public static void unsetGroupUserGroups(long groupId,
long[] userGroupIds)
throws SystemException
SystemException
public static void unsetTeamUserGroups(long teamId,
long[] userGroupIds)
throws SystemException
SystemException
public static UserGroup updateUserGroup(long companyId,
long userGroupId,
String name,
String description)
throws PortalException,
SystemException
PortalException
SystemExceptionpublic static UserGroupLocalService getService()
public void setService(UserGroupLocalService service)
|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||