Liferay 6.0-ee

com.liferay.portal.service.persistence
Class RoleUtil

java.lang.Object
  extended by com.liferay.portal.service.persistence.RoleUtil

public class RoleUtil
extends Object

The persistence utility for the role service. This utility wraps RolePersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.

Caching information and settings can be found in portal.properties

See Also:
RolePersistence, RolePersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
RoleUtil()
           
 
Method Summary
static void addGroup(long pk, Group group)
          Adds an association between the role and the group.
static void addGroup(long pk, long groupPK)
          Adds an association between the role and the group.
static void addGroups(long pk, List<Group> groups)
          Adds an association between the role and the groups.
static void addGroups(long pk, long[] groupPKs)
          Adds an association between the role and the groups.
static void addPermission(long pk, long permissionPK)
          Adds an association between the role and the permission.
static void addPermission(long pk, Permission permission)
          Adds an association between the role and the permission.
static void addPermissions(long pk, List<Permission> permissions)
          Adds an association between the role and the permissions.
static void addPermissions(long pk, long[] permissionPKs)
          Adds an association between the role and the permissions.
static void addUser(long pk, long userPK)
          Adds an association between the role and the user.
static void addUser(long pk, User user)
          Adds an association between the role and the user.
static void addUsers(long pk, List<User> users)
          Adds an association between the role and the users.
static void addUsers(long pk, long[] userPKs)
          Adds an association between the role and the users.
static void cacheResult(List<Role> roles)
          Caches the roles in the entity cache if it is enabled.
static void cacheResult(Role role)
          Caches the role in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(Role role)
           
static void clearGroups(long pk)
          Clears all associations between the role and its groups.
static void clearPermissions(long pk)
          Clears all associations between the role and its permissions.
static void clearUsers(long pk)
          Clears all associations between the role and its users.
static boolean containsGroup(long pk, long groupPK)
          Determines whether the group is associated with the role.
static boolean containsGroups(long pk)
          Determines whether the role has any groups associated with it.
static boolean containsPermission(long pk, long permissionPK)
          Determines whether the permission is associated with the role.
static boolean containsPermissions(long pk)
          Determines whether the role has any permissions associated with it.
static boolean containsUser(long pk, long userPK)
          Determines whether the user is associated with the role.
static boolean containsUsers(long pk)
          Determines whether the role has any users associated with it.
static int countAll()
          Counts all the roles.
static int countByC_C_C(long companyId, long classNameId, long classPK)
          Counts all the roles where companyId = ? and classNameId = ? and classPK = ?.
static int countByC_N(long companyId, String name)
          Counts all the roles where companyId = ? and name = ?.
static int countByCompanyId(long companyId)
          Counts all the roles where companyId = ?.
static int countBySubtype(String subtype)
          Counts all the roles where subtype = ?.
static int countByT_S(int type, String subtype)
          Counts all the roles where type = ? and subtype = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static Role create(long roleId)
          Creates a new role with the primary key.
static Role fetchByC_C_C(long companyId, long classNameId, long classPK)
          Finds the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found.
static Role fetchByC_C_C(long companyId, long classNameId, long classPK, boolean retrieveFromCache)
          Finds the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
static Role fetchByC_N(long companyId, String name)
          Finds the role where companyId = ? and name = ? or returns null if it could not be found.
static Role fetchByC_N(long companyId, String name, boolean retrieveFromCache)
          Finds the role where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
static Role fetchByPrimaryKey(long roleId)
          Finds the role with the primary key or returns null if it could not be found.
static List<Role> findAll()
          Finds all the roles.
static List<Role> findAll(int start, int end)
          Finds a range of all the roles.
static List<Role> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the roles.
static Role findByC_C_C(long companyId, long classNameId, long classPK)
          Finds the role where companyId = ? and classNameId = ? and classPK = ? or throws a NoSuchRoleException if it could not be found.
static Role findByC_N(long companyId, String name)
          Finds the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found.
static Role findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first role in the ordered set where companyId = ?.
static Role findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last role in the ordered set where companyId = ?.
static Role[] findByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator orderByComparator)
          Finds the roles before and after the current role in the ordered set where companyId = ?.
static List<Role> findByCompanyId(long companyId)
          Finds all the roles where companyId = ?.
static List<Role> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the roles where companyId = ?.
static List<Role> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the roles where companyId = ?.
static Role findByPrimaryKey(long roleId)
          Finds the role with the primary key or throws a NoSuchRoleException if it could not be found.
static Role findBySubtype_First(String subtype, OrderByComparator orderByComparator)
          Finds the first role in the ordered set where subtype = ?.
static Role findBySubtype_Last(String subtype, OrderByComparator orderByComparator)
          Finds the last role in the ordered set where subtype = ?.
static Role[] findBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator orderByComparator)
          Finds the roles before and after the current role in the ordered set where subtype = ?.
static List<Role> findBySubtype(String subtype)
          Finds all the roles where subtype = ?.
static List<Role> findBySubtype(String subtype, int start, int end)
          Finds a range of all the roles where subtype = ?.
static List<Role> findBySubtype(String subtype, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the roles where subtype = ?.
static Role findByT_S_First(int type, String subtype, OrderByComparator orderByComparator)
          Finds the first role in the ordered set where type = ? and subtype = ?.
static Role findByT_S_Last(int type, String subtype, OrderByComparator orderByComparator)
          Finds the last role in the ordered set where type = ? and subtype = ?.
static Role[] findByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator orderByComparator)
          Finds the roles before and after the current role in the ordered set where type = ? and subtype = ?.
static List<Role> findByT_S(int type, String subtype)
          Finds all the roles where type = ? and subtype = ?.
static List<Role> findByT_S(int type, String subtype, int start, int end)
          Finds a range of all the roles where type = ? and subtype = ?.
static List<Role> findByT_S(int type, String subtype, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the roles where type = ? and subtype = ?.
static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static List<Group> getGroups(long pk)
          Gets all the groups associated with the role.
static List<Group> getGroups(long pk, int start, int end)
          Gets a range of all the groups associated with the role.
static List<Group> getGroups(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the groups associated with the role.
static int getGroupsSize(long pk)
          Gets the number of groups associated with the role.
static List<Permission> getPermissions(long pk)
          Gets all the permissions associated with the role.
static List<Permission> getPermissions(long pk, int start, int end)
          Gets a range of all the permissions associated with the role.
static List<Permission> getPermissions(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the permissions associated with the role.
static int getPermissionsSize(long pk)
          Gets the number of permissions associated with the role.
static RolePersistence getPersistence()
           
static List<User> getUsers(long pk)
          Gets all the users associated with the role.
static List<User> getUsers(long pk, int start, int end)
          Gets a range of all the users associated with the role.
static List<User> getUsers(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the users associated with the role.
static int getUsersSize(long pk)
          Gets the number of users associated with the role.
static Role remove(long roleId)
          Removes the role with the primary key from the database.
static Role remove(Role role)
           
static void removeAll()
          Removes all the roles from the database.
static void removeByC_C_C(long companyId, long classNameId, long classPK)
          Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.
static void removeByC_N(long companyId, String name)
          Removes the role where companyId = ? and name = ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the roles where companyId = ? from the database.
static void removeBySubtype(String subtype)
          Removes all the roles where subtype = ? from the database.
static void removeByT_S(int type, String subtype)
          Removes all the roles where type = ? and subtype = ? from the database.
static void removeGroup(long pk, Group group)
          Removes the association between the role and the group.
static void removeGroup(long pk, long groupPK)
          Removes the association between the role and the group.
static void removeGroups(long pk, List<Group> groups)
          Removes the association between the role and the groups.
static void removeGroups(long pk, long[] groupPKs)
          Removes the association between the role and the groups.
static void removePermission(long pk, long permissionPK)
          Removes the association between the role and the permission.
static void removePermission(long pk, Permission permission)
          Removes the association between the role and the permission.
static void removePermissions(long pk, List<Permission> permissions)
          Removes the association between the role and the permissions.
static void removePermissions(long pk, long[] permissionPKs)
          Removes the association between the role and the permissions.
static void removeUser(long pk, long userPK)
          Removes the association between the role and the user.
static void removeUser(long pk, User user)
          Removes the association between the role and the user.
static void removeUsers(long pk, List<User> users)
          Removes the association between the role and the users.
static void removeUsers(long pk, long[] userPKs)
          Removes the association between the role and the users.
static void setGroups(long pk, List<Group> groups)
          Sets the groups associated with the role, removing and adding associations as necessary.
static void setGroups(long pk, long[] groupPKs)
          Sets the groups associated with the role, removing and adding associations as necessary.
static void setPermissions(long pk, List<Permission> permissions)
          Sets the permissions associated with the role, removing and adding associations as necessary.
static void setPermissions(long pk, long[] permissionPKs)
          Sets the permissions associated with the role, removing and adding associations as necessary.
 void setPersistence(RolePersistence persistence)
           
static void setUsers(long pk, List<User> users)
          Sets the users associated with the role, removing and adding associations as necessary.
static void setUsers(long pk, long[] userPKs)
          Sets the users associated with the role, removing and adding associations as necessary.
static Role update(Role role, boolean merge)
           
static Role update(Role role, boolean merge, ServiceContext serviceContext)
           
static Role updateImpl(Role role, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RoleUtil

public RoleUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(Role role)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                       throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                              int start,
                                              int end)
                                       throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

remove

public static Role remove(Role role)
                   throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static Role update(Role role,
                          boolean merge)
                   throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static Role update(Role role,
                          boolean merge,
                          ServiceContext serviceContext)
                   throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(Role role)
Caches the role in the entity cache if it is enabled.

Parameters:
role - the role to cache

cacheResult

public static void cacheResult(List<Role> roles)
Caches the roles in the entity cache if it is enabled.

Parameters:
roles - the roles to cache

create

public static Role create(long roleId)
Creates a new role with the primary key. Does not add the role to the database.

Parameters:
roleId - the primary key for the new role
Returns:
the new role

remove

public static Role remove(long roleId)
                   throws NoSuchRoleException,
                          SystemException
Removes the role with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
roleId - the primary key of the role to remove
Returns:
the role that was removed
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static Role updateImpl(Role role,
                              boolean merge)
                       throws SystemException
Throws:
SystemException

findByPrimaryKey

public static Role findByPrimaryKey(long roleId)
                             throws NoSuchRoleException,
                                    SystemException
Finds the role with the primary key or throws a NoSuchRoleException if it could not be found.

Parameters:
roleId - the primary key of the role to find
Returns:
the role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static Role fetchByPrimaryKey(long roleId)
                              throws SystemException
Finds the role with the primary key or returns null if it could not be found.

Parameters:
roleId - the primary key of the role to find
Returns:
the role, or null if a role with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<Role> findByCompanyId(long companyId)
                                  throws SystemException
Finds all the roles where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<Role> findByCompanyId(long companyId,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the roles where companyId = ?.

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 company id to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of matching roles
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<Role> findByCompanyId(long companyId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the roles where companyId = ?.

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 company id to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching roles
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

public static Role findByCompanyId_First(long companyId,
                                         OrderByComparator orderByComparator)
                                  throws NoSuchRoleException,
                                         SystemException
Finds the first role in the ordered set where companyId = ?.

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 company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

public static Role findByCompanyId_Last(long companyId,
                                        OrderByComparator orderByComparator)
                                 throws NoSuchRoleException,
                                        SystemException
Finds the last role in the ordered set where companyId = ?.

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 company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

public static Role[] findByCompanyId_PrevAndNext(long roleId,
                                                 long companyId,
                                                 OrderByComparator orderByComparator)
                                          throws NoSuchRoleException,
                                                 SystemException
Finds the roles before and after the current role in the ordered set where companyId = ?.

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:
roleId - the primary key of the current role
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

findBySubtype

public static List<Role> findBySubtype(String subtype)
                                throws SystemException
Finds all the roles where subtype = ?.

Parameters:
subtype - the subtype to search with
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findBySubtype

public static List<Role> findBySubtype(String subtype,
                                       int start,
                                       int end)
                                throws SystemException
Finds a range of all the roles where subtype = ?.

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:
subtype - the subtype to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of matching roles
Throws:
SystemException - if a system exception occurred

findBySubtype

public static List<Role> findBySubtype(String subtype,
                                       int start,
                                       int end,
                                       OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the roles where subtype = ?.

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:
subtype - the subtype to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching roles
Throws:
SystemException - if a system exception occurred

findBySubtype_First

public static Role findBySubtype_First(String subtype,
                                       OrderByComparator orderByComparator)
                                throws NoSuchRoleException,
                                       SystemException
Finds the first role in the ordered set where subtype = ?.

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:
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findBySubtype_Last

public static Role findBySubtype_Last(String subtype,
                                      OrderByComparator orderByComparator)
                               throws NoSuchRoleException,
                                      SystemException
Finds the last role in the ordered set where subtype = ?.

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:
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findBySubtype_PrevAndNext

public static Role[] findBySubtype_PrevAndNext(long roleId,
                                               String subtype,
                                               OrderByComparator orderByComparator)
                                        throws NoSuchRoleException,
                                               SystemException
Finds the roles before and after the current role in the ordered set where subtype = ?.

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:
roleId - the primary key of the current role
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

findByC_N

public static Role findByC_N(long companyId,
                             String name)
                      throws NoSuchRoleException,
                             SystemException
Finds the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found.

Parameters:
companyId - the company id to search with
name - the name to search with
Returns:
the matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

fetchByC_N

public static Role fetchByC_N(long companyId,
                              String name)
                       throws SystemException
Finds the role where companyId = ? and name = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company id to search with
name - the name to search with
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

fetchByC_N

public static Role fetchByC_N(long companyId,
                              String name,
                              boolean retrieveFromCache)
                       throws SystemException
Finds the role where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
companyId - the company id to search with
name - the name to search with
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

findByT_S

public static List<Role> findByT_S(int type,
                                   String subtype)
                            throws SystemException
Finds all the roles where type = ? and subtype = ?.

Parameters:
type - the type to search with
subtype - the subtype to search with
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByT_S

public static List<Role> findByT_S(int type,
                                   String subtype,
                                   int start,
                                   int end)
                            throws SystemException
Finds a range of all the roles where type = ? and subtype = ?.

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:
type - the type to search with
subtype - the subtype to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of matching roles
Throws:
SystemException - if a system exception occurred

findByT_S

public static List<Role> findByT_S(int type,
                                   String subtype,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                            throws SystemException
Finds an ordered range of all the roles where type = ? and subtype = ?.

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:
type - the type to search with
subtype - the subtype to search with
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching roles
Throws:
SystemException - if a system exception occurred

findByT_S_First

public static Role findByT_S_First(int type,
                                   String subtype,
                                   OrderByComparator orderByComparator)
                            throws NoSuchRoleException,
                                   SystemException
Finds the first role in the ordered set where type = ? and subtype = ?.

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:
type - the type to search with
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findByT_S_Last

public static Role findByT_S_Last(int type,
                                  String subtype,
                                  OrderByComparator orderByComparator)
                           throws NoSuchRoleException,
                                  SystemException
Finds the last role in the ordered set where type = ? and subtype = ?.

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:
type - the type to search with
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

findByT_S_PrevAndNext

public static Role[] findByT_S_PrevAndNext(long roleId,
                                           int type,
                                           String subtype,
                                           OrderByComparator orderByComparator)
                                    throws NoSuchRoleException,
                                           SystemException
Finds the roles before and after the current role in the ordered set where type = ? and subtype = ?.

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:
roleId - the primary key of the current role
type - the type to search with
subtype - the subtype to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

findByC_C_C

public static Role findByC_C_C(long companyId,
                               long classNameId,
                               long classPK)
                        throws NoSuchRoleException,
                               SystemException
Finds the role where companyId = ? and classNameId = ? and classPK = ? or throws a NoSuchRoleException if it could not be found.

Parameters:
companyId - the company id to search with
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

fetchByC_C_C

public static Role fetchByC_C_C(long companyId,
                                long classNameId,
                                long classPK)
                         throws SystemException
Finds the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company id to search with
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

fetchByC_C_C

public static Role fetchByC_C_C(long companyId,
                                long classNameId,
                                long classPK,
                                boolean retrieveFromCache)
                         throws SystemException
Finds the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
companyId - the company id to search with
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<Role> findAll()
                          throws SystemException
Finds all the roles.

Returns:
the roles
Throws:
SystemException - if a system exception occurred

findAll

public static List<Role> findAll(int start,
                                 int end)
                          throws SystemException
Finds a range of all the roles.

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:
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of roles
Throws:
SystemException - if a system exception occurred

findAll

public static List<Role> findAll(int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                          throws SystemException
Finds an ordered range of all the roles.

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:
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of roles
Throws:
SystemException - if a system exception occurred

removeByCompanyId

public static void removeByCompanyId(long companyId)
                              throws SystemException
Removes all the roles where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeBySubtype

public static void removeBySubtype(String subtype)
                            throws SystemException
Removes all the roles where subtype = ? from the database.

Parameters:
subtype - the subtype to search with
Throws:
SystemException - if a system exception occurred

removeByC_N

public static void removeByC_N(long companyId,
                               String name)
                        throws NoSuchRoleException,
                               SystemException
Removes the role where companyId = ? and name = ? from the database.

Parameters:
companyId - the company id to search with
name - the name to search with
Throws:
SystemException - if a system exception occurred
NoSuchRoleException

removeByT_S

public static void removeByT_S(int type,
                               String subtype)
                        throws SystemException
Removes all the roles where type = ? and subtype = ? from the database.

Parameters:
type - the type to search with
subtype - the subtype to search with
Throws:
SystemException - if a system exception occurred

removeByC_C_C

public static void removeByC_C_C(long companyId,
                                 long classNameId,
                                 long classPK)
                          throws NoSuchRoleException,
                                 SystemException
Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.

Parameters:
companyId - the company id to search with
classNameId - the class name id to search with
classPK - the class p k to search with
Throws:
SystemException - if a system exception occurred
NoSuchRoleException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the roles from the database.

Throws:
SystemException - if a system exception occurred

countByCompanyId

public static int countByCompanyId(long companyId)
                            throws SystemException
Counts all the roles where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countBySubtype

public static int countBySubtype(String subtype)
                          throws SystemException
Counts all the roles where subtype = ?.

Parameters:
subtype - the subtype to search with
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countByC_N

public static int countByC_N(long companyId,
                             String name)
                      throws SystemException
Counts all the roles where companyId = ? and name = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countByT_S

public static int countByT_S(int type,
                             String subtype)
                      throws SystemException
Counts all the roles where type = ? and subtype = ?.

Parameters:
type - the type to search with
subtype - the subtype to search with
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countByC_C_C

public static int countByC_C_C(long companyId,
                               long classNameId,
                               long classPK)
                        throws SystemException
Counts all the roles where companyId = ? and classNameId = ? and classPK = ?.

Parameters:
companyId - the company id to search with
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the roles.

Returns:
the number of roles
Throws:
SystemException - if a system exception occurred

getGroups

public static List<Group> getGroups(long pk)
                             throws SystemException
Gets all the groups associated with the role.

Parameters:
pk - the primary key of the role to get the associated groups for
Returns:
the groups associated with the role
Throws:
SystemException - if a system exception occurred

getGroups

public static List<Group> getGroups(long pk,
                                    int start,
                                    int end)
                             throws SystemException
Gets a range of all the groups associated with the role.

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:
pk - the primary key of the role to get the associated groups for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of groups associated with the role
Throws:
SystemException - if a system exception occurred

getGroups

public static List<Group> getGroups(long pk,
                                    int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                             throws SystemException
Gets an ordered range of all the groups associated with the role.

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:
pk - the primary key of the role to get the associated groups for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of groups associated with the role
Throws:
SystemException - if a system exception occurred

getGroupsSize

public static int getGroupsSize(long pk)
                         throws SystemException
Gets the number of groups associated with the role.

Parameters:
pk - the primary key of the role to get the number of associated groups for
Returns:
the number of groups associated with the role
Throws:
SystemException - if a system exception occurred

containsGroup

public static boolean containsGroup(long pk,
                                    long groupPK)
                             throws SystemException
Determines whether the group is associated with the role.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Returns:
whether the group is associated with the role
Throws:
SystemException - if a system exception occurred

containsGroups

public static boolean containsGroups(long pk)
                              throws SystemException
Determines whether the role has any groups associated with it.

Parameters:
pk - the primary key of the role to check for associations with groups
Returns:
whether the role has any groups associated with it
Throws:
SystemException - if a system exception occurred

addGroup

public static void addGroup(long pk,
                            long groupPK)
                     throws SystemException
Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Throws:
SystemException - if a system exception occurred

addGroup

public static void addGroup(long pk,
                            Group group)
                     throws SystemException
Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
group - the group
Throws:
SystemException - if a system exception occurred

addGroups

public static void addGroups(long pk,
                             long[] groupPKs)
                      throws SystemException
Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups
Throws:
SystemException - if a system exception occurred

addGroups

public static void addGroups(long pk,
                             List<Group> groups)
                      throws SystemException
Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groups - the groups
Throws:
SystemException - if a system exception occurred

clearGroups

public static void clearGroups(long pk)
                        throws SystemException
Clears all associations between the role and its groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to clear the associated groups from
Throws:
SystemException - if a system exception occurred

removeGroup

public static void removeGroup(long pk,
                               long groupPK)
                        throws SystemException
Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Throws:
SystemException - if a system exception occurred

removeGroup

public static void removeGroup(long pk,
                               Group group)
                        throws SystemException
Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
group - the group
Throws:
SystemException - if a system exception occurred

removeGroups

public static void removeGroups(long pk,
                                long[] groupPKs)
                         throws SystemException
Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups
Throws:
SystemException - if a system exception occurred

removeGroups

public static void removeGroups(long pk,
                                List<Group> groups)
                         throws SystemException
Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groups - the groups
Throws:
SystemException - if a system exception occurred

setGroups

public static void setGroups(long pk,
                             long[] groupPKs)
                      throws SystemException
Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
groupPKs - the primary keys of the groups to be associated with the role
Throws:
SystemException - if a system exception occurred

setGroups

public static void setGroups(long pk,
                             List<Group> groups)
                      throws SystemException
Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
groups - the groups to be associated with the role
Throws:
SystemException - if a system exception occurred

getPermissions

public static List<Permission> getPermissions(long pk)
                                       throws SystemException
Gets all the permissions associated with the role.

Parameters:
pk - the primary key of the role to get the associated permissions for
Returns:
the permissions associated with the role
Throws:
SystemException - if a system exception occurred

getPermissions

public static List<Permission> getPermissions(long pk,
                                              int start,
                                              int end)
                                       throws SystemException
Gets a range of all the permissions associated with the role.

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:
pk - the primary key of the role to get the associated permissions for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of permissions associated with the role
Throws:
SystemException - if a system exception occurred

getPermissions

public static List<Permission> getPermissions(long pk,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Gets an ordered range of all the permissions associated with the role.

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:
pk - the primary key of the role to get the associated permissions for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of permissions associated with the role
Throws:
SystemException - if a system exception occurred

getPermissionsSize

public static int getPermissionsSize(long pk)
                              throws SystemException
Gets the number of permissions associated with the role.

Parameters:
pk - the primary key of the role to get the number of associated permissions for
Returns:
the number of permissions associated with the role
Throws:
SystemException - if a system exception occurred

containsPermission

public static boolean containsPermission(long pk,
                                         long permissionPK)
                                  throws SystemException
Determines whether the permission is associated with the role.

Parameters:
pk - the primary key of the role
permissionPK - the primary key of the permission
Returns:
whether the permission is associated with the role
Throws:
SystemException - if a system exception occurred

containsPermissions

public static boolean containsPermissions(long pk)
                                   throws SystemException
Determines whether the role has any permissions associated with it.

Parameters:
pk - the primary key of the role to check for associations with permissions
Returns:
whether the role has any permissions associated with it
Throws:
SystemException - if a system exception occurred

addPermission

public static void addPermission(long pk,
                                 long permissionPK)
                          throws SystemException
Adds an association between the role and the permission. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissionPK - the primary key of the permission
Throws:
SystemException - if a system exception occurred

addPermission

public static void addPermission(long pk,
                                 Permission permission)
                          throws SystemException
Adds an association between the role and the permission. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permission - the permission
Throws:
SystemException - if a system exception occurred

addPermissions

public static void addPermissions(long pk,
                                  long[] permissionPKs)
                           throws SystemException
Adds an association between the role and the permissions. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissionPKs - the primary keys of the permissions
Throws:
SystemException - if a system exception occurred

addPermissions

public static void addPermissions(long pk,
                                  List<Permission> permissions)
                           throws SystemException
Adds an association between the role and the permissions. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissions - the permissions
Throws:
SystemException - if a system exception occurred

clearPermissions

public static void clearPermissions(long pk)
                             throws SystemException
Clears all associations between the role and its permissions. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to clear the associated permissions from
Throws:
SystemException - if a system exception occurred

removePermission

public static void removePermission(long pk,
                                    long permissionPK)
                             throws SystemException
Removes the association between the role and the permission. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissionPK - the primary key of the permission
Throws:
SystemException - if a system exception occurred

removePermission

public static void removePermission(long pk,
                                    Permission permission)
                             throws SystemException
Removes the association between the role and the permission. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permission - the permission
Throws:
SystemException - if a system exception occurred

removePermissions

public static void removePermissions(long pk,
                                     long[] permissionPKs)
                              throws SystemException
Removes the association between the role and the permissions. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissionPKs - the primary keys of the permissions
Throws:
SystemException - if a system exception occurred

removePermissions

public static void removePermissions(long pk,
                                     List<Permission> permissions)
                              throws SystemException
Removes the association between the role and the permissions. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
permissions - the permissions
Throws:
SystemException - if a system exception occurred

setPermissions

public static void setPermissions(long pk,
                                  long[] permissionPKs)
                           throws SystemException
Sets the permissions associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
permissionPKs - the primary keys of the permissions to be associated with the role
Throws:
SystemException - if a system exception occurred

setPermissions

public static void setPermissions(long pk,
                                  List<Permission> permissions)
                           throws SystemException
Sets the permissions associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
permissions - the permissions to be associated with the role
Throws:
SystemException - if a system exception occurred

getUsers

public static List<User> getUsers(long pk)
                           throws SystemException
Gets all the users associated with the role.

Parameters:
pk - the primary key of the role to get the associated users for
Returns:
the users associated with the role
Throws:
SystemException - if a system exception occurred

getUsers

public static List<User> getUsers(long pk,
                                  int start,
                                  int end)
                           throws SystemException
Gets a range of all the users associated with the role.

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:
pk - the primary key of the role to get the associated users for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
Returns:
the range of users associated with the role
Throws:
SystemException - if a system exception occurred

getUsers

public static List<User> getUsers(long pk,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                           throws SystemException
Gets an ordered range of all the users associated with the role.

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:
pk - the primary key of the role to get the associated users for
start - the lower bound of the range of roles to return
end - the upper bound of the range of roles to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of users associated with the role
Throws:
SystemException - if a system exception occurred

getUsersSize

public static int getUsersSize(long pk)
                        throws SystemException
Gets the number of users associated with the role.

Parameters:
pk - the primary key of the role to get the number of associated users for
Returns:
the number of users associated with the role
Throws:
SystemException - if a system exception occurred

containsUser

public static boolean containsUser(long pk,
                                   long userPK)
                            throws SystemException
Determines whether the user is associated with the role.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Returns:
whether the user is associated with the role
Throws:
SystemException - if a system exception occurred

containsUsers

public static boolean containsUsers(long pk)
                             throws SystemException
Determines whether the role has any users associated with it.

Parameters:
pk - the primary key of the role to check for associations with users
Returns:
whether the role has any users associated with it
Throws:
SystemException - if a system exception occurred

addUser

public static void addUser(long pk,
                           long userPK)
                    throws SystemException
Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Throws:
SystemException - if a system exception occurred

addUser

public static void addUser(long pk,
                           User user)
                    throws SystemException
Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
user - the user
Throws:
SystemException - if a system exception occurred

addUsers

public static void addUsers(long pk,
                            long[] userPKs)
                     throws SystemException
Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users
Throws:
SystemException - if a system exception occurred

addUsers

public static void addUsers(long pk,
                            List<User> users)
                     throws SystemException
Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
users - the users
Throws:
SystemException - if a system exception occurred

clearUsers

public static void clearUsers(long pk)
                       throws SystemException
Clears all associations between the role and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to clear the associated users from
Throws:
SystemException - if a system exception occurred

removeUser

public static void removeUser(long pk,
                              long userPK)
                       throws SystemException
Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Throws:
SystemException - if a system exception occurred

removeUser

public static void removeUser(long pk,
                              User user)
                       throws SystemException
Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
user - the user
Throws:
SystemException - if a system exception occurred

removeUsers

public static void removeUsers(long pk,
                               long[] userPKs)
                        throws SystemException
Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users
Throws:
SystemException - if a system exception occurred

removeUsers

public static void removeUsers(long pk,
                               List<User> users)
                        throws SystemException
Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
users - the users
Throws:
SystemException - if a system exception occurred

setUsers

public static void setUsers(long pk,
                            long[] userPKs)
                     throws SystemException
Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
userPKs - the primary keys of the users to be associated with the role
Throws:
SystemException - if a system exception occurred

setUsers

public static void setUsers(long pk,
                            List<User> users)
                     throws SystemException
Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to set the associations for
users - the users to be associated with the role
Throws:
SystemException - if a system exception occurred

getPersistence

public static RolePersistence getPersistence()

setPersistence

public void setPersistence(RolePersistence persistence)

Liferay 6.0-ee