|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.persistence.impl.BasePersistenceImpl<Role>
com.liferay.portal.service.persistence.RolePersistenceImpl
public class RolePersistenceImpl
The persistence for the role service.
Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regnerate this class.
Caching information and settings can be found in portal.properties
RolePersistence,
RoleUtil| Nested Class Summary | |
|---|---|
protected class |
RolePersistenceImpl.AddGroup
|
protected class |
RolePersistenceImpl.AddPermission
|
protected class |
RolePersistenceImpl.AddUser
|
protected class |
RolePersistenceImpl.ClearGroups
|
protected class |
RolePersistenceImpl.ClearPermissions
|
protected class |
RolePersistenceImpl.ClearUsers
|
protected class |
RolePersistenceImpl.ContainsGroup
|
protected class |
RolePersistenceImpl.ContainsPermission
|
protected class |
RolePersistenceImpl.ContainsUser
|
protected class |
RolePersistenceImpl.RemoveGroup
|
protected class |
RolePersistenceImpl.RemovePermission
|
protected class |
RolePersistenceImpl.RemoveUser
|
| Fields inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
|---|
COUNT_COLUMN_NAME, listeners, ORDER_BY_ASC, ORDER_BY_ASC_HAS_NEXT, ORDER_BY_CLAUSE, ORDER_BY_DESC, ORDER_BY_DESC_HAS_NEXT, WHERE_AND, WHERE_GREATER_THAN, WHERE_GREATER_THAN_HAS_NEXT, WHERE_LESSER_THAN, WHERE_LESSER_THAN_HAS_NEXT, WHERE_OR |
| Constructor Summary | |
|---|---|
RolePersistenceImpl()
|
|
| Method Summary | |
|---|---|
void |
addGroup(long pk,
Group group)
Adds an association between the role and the group. |
void |
addGroup(long pk,
long groupPK)
Adds an association between the role and the group. |
void |
addGroups(long pk,
List<Group> groups)
Adds an association between the role and the groups. |
void |
addGroups(long pk,
long[] groupPKs)
Adds an association between the role and the groups. |
void |
addPermission(long pk,
long permissionPK)
Adds an association between the role and the permission. |
void |
addPermission(long pk,
Permission permission)
Adds an association between the role and the permission. |
void |
addPermissions(long pk,
List<Permission> permissions)
Adds an association between the role and the permissions. |
void |
addPermissions(long pk,
long[] permissionPKs)
Adds an association between the role and the permissions. |
void |
addUser(long pk,
long userPK)
Adds an association between the role and the user. |
void |
addUser(long pk,
User user)
Adds an association between the role and the user. |
void |
addUsers(long pk,
List<User> users)
Adds an association between the role and the users. |
void |
addUsers(long pk,
long[] userPKs)
Adds an association between the role and the users. |
void |
afterPropertiesSet()
Initializes the role persistence. |
void |
cacheResult(List<Role> roles)
Caches the roles in the entity cache if it is enabled. |
void |
cacheResult(Role role)
Caches the role in the entity cache if it is enabled. |
void |
clearCache()
Clears the cache for all roles. |
void |
clearCache(Role role)
Clears the cache for the role. |
void |
clearGroups(long pk)
Clears all associations between the role and its groups. |
void |
clearPermissions(long pk)
Clears all associations between the role and its permissions. |
void |
clearUsers(long pk)
Clears all associations between the role and its users. |
boolean |
containsGroup(long pk,
long groupPK)
Determines whether the group is associated with the role. |
boolean |
containsGroups(long pk)
Determines whether the role has any groups associated with it. |
boolean |
containsPermission(long pk,
long permissionPK)
Determines whether the permission is associated with the role. |
boolean |
containsPermissions(long pk)
Determines whether the role has any permissions associated with it. |
boolean |
containsUser(long pk,
long userPK)
Determines whether the user is associated with the role. |
boolean |
containsUsers(long pk)
Determines whether the role has any users associated with it. |
int |
countAll()
Counts all the roles. |
int |
countByC_C_C(long companyId,
long classNameId,
long classPK)
Counts all the roles where companyId = ? and classNameId = ? and classPK = ?. |
int |
countByC_N(long companyId,
String name)
Counts all the roles where companyId = ? and name = ?. |
int |
countByCompanyId(long companyId)
Counts all the roles where companyId = ?. |
int |
countBySubtype(String subtype)
Counts all the roles where subtype = ?. |
int |
countByT_S(int type,
String subtype)
Counts all the roles where type = ? and subtype = ?. |
Role |
create(long roleId)
Creates a new role with the primary key. |
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. |
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. |
Role |
fetchByC_N(long companyId,
String name)
Finds the role where companyId = ? and name = ? or returns null if it could not be found. |
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. |
Role |
fetchByPrimaryKey(long roleId)
Finds the role with the primary key or returns null if it could not be found. |
Role |
fetchByPrimaryKey(Serializable primaryKey)
Finds the role with the primary key or returns null if it could not be found. |
List<Role> |
findAll()
Finds all the roles. |
List<Role> |
findAll(int start,
int end)
Finds a range of all the roles. |
List<Role> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the roles. |
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. |
Role |
findByC_N(long companyId,
String name)
Finds the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found. |
Role |
findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
Finds the first role in the ordered set where companyId = ?. |
Role |
findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
Finds the last role in the ordered set where companyId = ?. |
Role[] |
findByCompanyId_PrevAndNext(long roleId,
long companyId,
OrderByComparator orderByComparator)
Finds the roles before and after the current role in the ordered set where companyId = ?. |
List<Role> |
findByCompanyId(long companyId)
Finds all the roles where companyId = ?. |
List<Role> |
findByCompanyId(long companyId,
int start,
int end)
Finds a range of all the roles where companyId = ?. |
List<Role> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the roles where companyId = ?. |
Role |
findByPrimaryKey(long roleId)
Finds the role with the primary key or throws a NoSuchRoleException if it could not be found. |
Role |
findByPrimaryKey(Serializable primaryKey)
Finds the role with the primary key or throws a NoSuchModelException if it could not be found. |
Role |
findBySubtype_First(String subtype,
OrderByComparator orderByComparator)
Finds the first role in the ordered set where subtype = ?. |
Role |
findBySubtype_Last(String subtype,
OrderByComparator orderByComparator)
Finds the last role in the ordered set where subtype = ?. |
Role[] |
findBySubtype_PrevAndNext(long roleId,
String subtype,
OrderByComparator orderByComparator)
Finds the roles before and after the current role in the ordered set where subtype = ?. |
List<Role> |
findBySubtype(String subtype)
Finds all the roles where subtype = ?. |
List<Role> |
findBySubtype(String subtype,
int start,
int end)
Finds a range of all the roles where subtype = ?. |
List<Role> |
findBySubtype(String subtype,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the roles where subtype = ?. |
Role |
findByT_S_First(int type,
String subtype,
OrderByComparator orderByComparator)
Finds the first role in the ordered set where type = ? and subtype = ?. |
Role |
findByT_S_Last(int type,
String subtype,
OrderByComparator orderByComparator)
Finds the last role in the ordered set where type = ? and subtype = ?. |
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 = ?. |
List<Role> |
findByT_S(int type,
String subtype)
Finds all the roles where type = ? and subtype = ?. |
List<Role> |
findByT_S(int type,
String subtype,
int start,
int end)
Finds a range of all the roles where type = ? and subtype = ?. |
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 = ?. |
protected Role |
getByCompanyId_PrevAndNext(Session session,
Role role,
long companyId,
OrderByComparator orderByComparator,
boolean previous)
|
protected Role |
getBySubtype_PrevAndNext(Session session,
Role role,
String subtype,
OrderByComparator orderByComparator,
boolean previous)
|
protected Role |
getByT_S_PrevAndNext(Session session,
Role role,
int type,
String subtype,
OrderByComparator orderByComparator,
boolean previous)
|
List<Group> |
getGroups(long pk)
Gets all the groups associated with the role. |
List<Group> |
getGroups(long pk,
int start,
int end)
Gets a range of all the groups associated with the role. |
List<Group> |
getGroups(long pk,
int start,
int end,
OrderByComparator orderByComparator)
Gets an ordered range of all the groups associated with the role. |
int |
getGroupsSize(long pk)
Gets the number of groups associated with the role. |
List<Permission> |
getPermissions(long pk)
Gets all the permissions associated with the role. |
List<Permission> |
getPermissions(long pk,
int start,
int end)
Gets a range of all the permissions associated with the role. |
List<Permission> |
getPermissions(long pk,
int start,
int end,
OrderByComparator orderByComparator)
Gets an ordered range of all the permissions associated with the role. |
int |
getPermissionsSize(long pk)
Gets the number of permissions associated with the role. |
List<User> |
getUsers(long pk)
Gets all the users associated with the role. |
List<User> |
getUsers(long pk,
int start,
int end)
Gets a range of all the users associated with the role. |
List<User> |
getUsers(long pk,
int start,
int end,
OrderByComparator orderByComparator)
Gets an ordered range of all the users associated with the role. |
int |
getUsersSize(long pk)
Gets the number of users associated with the role. |
Role |
remove(long roleId)
Removes the role with the primary key from the database. |
Role |
remove(Serializable primaryKey)
Removes the role with the primary key from the database. |
void |
removeAll()
Removes all the roles from the database. |
void |
removeByC_C_C(long companyId,
long classNameId,
long classPK)
Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database. |
void |
removeByC_N(long companyId,
String name)
Removes the role where companyId = ? and name = ? from the database. |
void |
removeByCompanyId(long companyId)
Removes all the roles where companyId = ? from the database. |
void |
removeBySubtype(String subtype)
Removes all the roles where subtype = ? from the database. |
void |
removeByT_S(int type,
String subtype)
Removes all the roles where type = ? and subtype = ? from the database. |
void |
removeGroup(long pk,
Group group)
Removes the association between the role and the group. |
void |
removeGroup(long pk,
long groupPK)
Removes the association between the role and the group. |
void |
removeGroups(long pk,
List<Group> groups)
Removes the association between the role and the groups. |
void |
removeGroups(long pk,
long[] groupPKs)
Removes the association between the role and the groups. |
protected Role |
removeImpl(Role role)
Removes the model instance from the database. |
void |
removePermission(long pk,
long permissionPK)
Removes the association between the role and the permission. |
void |
removePermission(long pk,
Permission permission)
Removes the association between the role and the permission. |
void |
removePermissions(long pk,
List<Permission> permissions)
Removes the association between the role and the permissions. |
void |
removePermissions(long pk,
long[] permissionPKs)
Removes the association between the role and the permissions. |
void |
removeUser(long pk,
long userPK)
Removes the association between the role and the user. |
void |
removeUser(long pk,
User user)
Removes the association between the role and the user. |
void |
removeUsers(long pk,
List<User> users)
Removes the association between the role and the users. |
void |
removeUsers(long pk,
long[] userPKs)
Removes the association between the role and the users. |
void |
setGroups(long pk,
List<Group> groups)
Sets the groups associated with the role, removing and adding associations as necessary. |
void |
setGroups(long pk,
long[] groupPKs)
Sets the groups associated with the role, removing and adding associations as necessary. |
void |
setPermissions(long pk,
List<Permission> permissions)
Sets the permissions associated with the role, removing and adding associations as necessary. |
void |
setPermissions(long pk,
long[] permissionPKs)
Sets the permissions associated with the role, removing and adding associations as necessary. |
void |
setUsers(long pk,
List<User> users)
Sets the users associated with the role, removing and adding associations as necessary. |
void |
setUsers(long pk,
long[] userPKs)
Sets the users associated with the role, removing and adding associations as necessary. |
protected Role |
toUnwrappedModel(Role role)
|
Role |
updateImpl(Role role,
boolean merge)
Updates the model instance in the database or adds it if it does not yet exist. |
| Methods inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
|---|
appendOrderByComparator, closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getDialect, getListeners, openNewSession, openSession, processException, registerListener, remove, setDataSource, setSessionFactory, unregisterListener, update, update |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, setDataSource, unregisterListener, update, update |
| Field Detail |
|---|
public static final String FINDER_CLASS_NAME_ENTITY
public static final String FINDER_CLASS_NAME_LIST
public static final FinderPath FINDER_PATH_FIND_BY_COMPANYID
public static final FinderPath FINDER_PATH_COUNT_BY_COMPANYID
public static final FinderPath FINDER_PATH_FIND_BY_SUBTYPE
public static final FinderPath FINDER_PATH_COUNT_BY_SUBTYPE
public static final FinderPath FINDER_PATH_FETCH_BY_C_N
public static final FinderPath FINDER_PATH_COUNT_BY_C_N
public static final FinderPath FINDER_PATH_FIND_BY_T_S
public static final FinderPath FINDER_PATH_COUNT_BY_T_S
public static final FinderPath FINDER_PATH_FETCH_BY_C_C_C
public static final FinderPath FINDER_PATH_COUNT_BY_C_C_C
public static final FinderPath FINDER_PATH_FIND_ALL
public static final FinderPath FINDER_PATH_COUNT_ALL
public static final FinderPath FINDER_PATH_GET_GROUPS
public static final FinderPath FINDER_PATH_GET_GROUPS_SIZE
public static final FinderPath FINDER_PATH_CONTAINS_GROUP
public static final FinderPath FINDER_PATH_GET_PERMISSIONS
public static final FinderPath FINDER_PATH_GET_PERMISSIONS_SIZE
public static final FinderPath FINDER_PATH_CONTAINS_PERMISSION
public static final FinderPath FINDER_PATH_GET_USERS
public static final FinderPath FINDER_PATH_GET_USERS_SIZE
public static final FinderPath FINDER_PATH_CONTAINS_USER
@BeanReference(type=AccountPersistence.class) protected AccountPersistence accountPersistence
@BeanReference(type=AddressPersistence.class) protected AddressPersistence addressPersistence
@BeanReference(type=BrowserTrackerPersistence.class) protected BrowserTrackerPersistence browserTrackerPersistence
@BeanReference(type=ClassNamePersistence.class) protected ClassNamePersistence classNamePersistence
@BeanReference(type=CompanyPersistence.class) protected CompanyPersistence companyPersistence
@BeanReference(type=ContactPersistence.class) protected ContactPersistence contactPersistence
@BeanReference(type=CountryPersistence.class) protected CountryPersistence countryPersistence
@BeanReference(type=EmailAddressPersistence.class) protected EmailAddressPersistence emailAddressPersistence
@BeanReference(type=GroupPersistence.class) protected GroupPersistence groupPersistence
@BeanReference(type=ImagePersistence.class) protected ImagePersistence imagePersistence
@BeanReference(type=LayoutPersistence.class) protected LayoutPersistence layoutPersistence
@BeanReference(type=LayoutPrototypePersistence.class) protected LayoutPrototypePersistence layoutPrototypePersistence
@BeanReference(type=LayoutSetPersistence.class) protected LayoutSetPersistence layoutSetPersistence
@BeanReference(type=LayoutSetPrototypePersistence.class) protected LayoutSetPrototypePersistence layoutSetPrototypePersistence
@BeanReference(type=ListTypePersistence.class) protected ListTypePersistence listTypePersistence
@BeanReference(type=LockPersistence.class) protected LockPersistence lockPersistence
@BeanReference(type=MembershipRequestPersistence.class) protected MembershipRequestPersistence membershipRequestPersistence
@BeanReference(type=OrganizationPersistence.class) protected OrganizationPersistence organizationPersistence
@BeanReference(type=OrgGroupPermissionPersistence.class) protected OrgGroupPermissionPersistence orgGroupPermissionPersistence
@BeanReference(type=OrgGroupRolePersistence.class) protected OrgGroupRolePersistence orgGroupRolePersistence
@BeanReference(type=OrgLaborPersistence.class) protected OrgLaborPersistence orgLaborPersistence
@BeanReference(type=PasswordPolicyPersistence.class) protected PasswordPolicyPersistence passwordPolicyPersistence
@BeanReference(type=PasswordPolicyRelPersistence.class) protected PasswordPolicyRelPersistence passwordPolicyRelPersistence
@BeanReference(type=PasswordTrackerPersistence.class) protected PasswordTrackerPersistence passwordTrackerPersistence
@BeanReference(type=PermissionPersistence.class) protected PermissionPersistence permissionPersistence
@BeanReference(type=PhonePersistence.class) protected PhonePersistence phonePersistence
@BeanReference(type=PluginSettingPersistence.class) protected PluginSettingPersistence pluginSettingPersistence
@BeanReference(type=PortletPersistence.class) protected PortletPersistence portletPersistence
@BeanReference(type=PortletItemPersistence.class) protected PortletItemPersistence portletItemPersistence
@BeanReference(type=PortletPreferencesPersistence.class) protected PortletPreferencesPersistence portletPreferencesPersistence
@BeanReference(type=RegionPersistence.class) protected RegionPersistence regionPersistence
@BeanReference(type=ReleasePersistence.class) protected ReleasePersistence releasePersistence
@BeanReference(type=ResourcePersistence.class) protected ResourcePersistence resourcePersistence
@BeanReference(type=ResourceActionPersistence.class) protected ResourceActionPersistence resourceActionPersistence
@BeanReference(type=ResourceCodePersistence.class) protected ResourceCodePersistence resourceCodePersistence
@BeanReference(type=ResourcePermissionPersistence.class) protected ResourcePermissionPersistence resourcePermissionPersistence
@BeanReference(type=RolePersistence.class) protected RolePersistence rolePersistence
@BeanReference(type=ServiceComponentPersistence.class) protected ServiceComponentPersistence serviceComponentPersistence
@BeanReference(type=ShardPersistence.class) protected ShardPersistence shardPersistence
@BeanReference(type=SubscriptionPersistence.class) protected SubscriptionPersistence subscriptionPersistence
@BeanReference(type=TicketPersistence.class) protected TicketPersistence ticketPersistence
@BeanReference(type=TeamPersistence.class) protected TeamPersistence teamPersistence
@BeanReference(type=UserPersistence.class) protected UserPersistence userPersistence
@BeanReference(type=UserGroupPersistence.class) protected UserGroupPersistence userGroupPersistence
@BeanReference(type=UserGroupGroupRolePersistence.class) protected UserGroupGroupRolePersistence userGroupGroupRolePersistence
@BeanReference(type=UserGroupRolePersistence.class) protected UserGroupRolePersistence userGroupRolePersistence
@BeanReference(type=UserIdMapperPersistence.class) protected UserIdMapperPersistence userIdMapperPersistence
@BeanReference(type=UserTrackerPersistence.class) protected UserTrackerPersistence userTrackerPersistence
@BeanReference(type=UserTrackerPathPersistence.class) protected UserTrackerPathPersistence userTrackerPathPersistence
@BeanReference(type=WebDAVPropsPersistence.class) protected WebDAVPropsPersistence webDAVPropsPersistence
@BeanReference(type=WebsitePersistence.class) protected WebsitePersistence websitePersistence
@BeanReference(type=WorkflowDefinitionLinkPersistence.class) protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence
@BeanReference(type=WorkflowInstanceLinkPersistence.class) protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence
protected RolePersistenceImpl.ContainsGroup containsGroup
protected RolePersistenceImpl.AddGroup addGroup
protected RolePersistenceImpl.ClearGroups clearGroups
protected RolePersistenceImpl.RemoveGroup removeGroup
protected RolePersistenceImpl.ContainsPermission containsPermission
protected RolePersistenceImpl.AddPermission addPermission
protected RolePersistenceImpl.ClearPermissions clearPermissions
protected RolePersistenceImpl.RemovePermission removePermission
protected RolePersistenceImpl.ContainsUser containsUser
protected RolePersistenceImpl.AddUser addUser
protected RolePersistenceImpl.ClearUsers clearUsers
protected RolePersistenceImpl.RemoveUser removeUser
| Constructor Detail |
|---|
public RolePersistenceImpl()
| Method Detail |
|---|
public void cacheResult(Role role)
cacheResult in interface RolePersistencerole - the role to cachepublic void cacheResult(List<Role> roles)
cacheResult in interface RolePersistenceroles - the roles to cachepublic void clearCache()
The EntityCache and FinderCache are both cleared by this method.
clearCache in interface BasePersistence<Role>clearCache in class BasePersistenceImpl<Role>public void clearCache(Role role)
The EntityCache and FinderCache are both cleared by this method.
clearCache in interface BasePersistence<Role>clearCache in class BasePersistenceImpl<Role>role - the instance of this model to clear the cache forpublic Role create(long roleId)
create in interface RolePersistenceroleId - the primary key for the new role
public Role remove(Serializable primaryKey)
throws NoSuchModelException,
SystemException
remove in interface BasePersistence<Role>remove in class BasePersistenceImpl<Role>primaryKey - the primary key of the role to remove
NoSuchModelException - if a role with the primary key could not be found
SystemException - if a system exception occurred
public Role remove(long roleId)
throws NoSuchRoleException,
SystemException
remove in interface RolePersistenceroleId - the primary key of the role to remove
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred
protected Role removeImpl(Role role)
throws SystemException
BasePersistenceImplBasePersistenceImpl.update(BaseModel,
boolean) depends on this method to implement the remove operation; it
only notifies the model listeners.
removeImpl in class BasePersistenceImpl<Role>role - the model instance to remove
SystemException - if a system exception occurred
public Role updateImpl(Role role,
boolean merge)
throws SystemException
BasePersistenceImplBasePersistenceImpl.remove(BaseModel) depends on this method to implement the
update operation; it only notifies the model listeners.
updateImpl in interface RolePersistenceupdateImpl in class BasePersistenceImpl<Role>role - the model instance to updatemerge - whether to merge the model instance with the current
session. See BatchSession.update(
com.liferay.portal.kernel.dao.orm.Session, BaseModel, boolean)
for an explanation.
SystemException - if a system exception occurredprotected Role toUnwrappedModel(Role role)
public Role findByPrimaryKey(Serializable primaryKey)
throws NoSuchModelException,
SystemException
NoSuchModelException if it could not be found.
findByPrimaryKey in interface BasePersistence<Role>findByPrimaryKey in class BasePersistenceImpl<Role>primaryKey - the primary key of the role to find
NoSuchModelException - if a role with the primary key could not be found
SystemException - if a system exception occurred
public Role findByPrimaryKey(long roleId)
throws NoSuchRoleException,
SystemException
NoSuchRoleException if it could not be found.
findByPrimaryKey in interface RolePersistenceroleId - the primary key of the role to find
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred
public Role fetchByPrimaryKey(Serializable primaryKey)
throws SystemException
null if it could not be found.
fetchByPrimaryKey in interface BasePersistence<Role>fetchByPrimaryKey in class BasePersistenceImpl<Role>primaryKey - the primary key of the role to find
null if a role with the primary key could not be found
SystemException - if a system exception occurred
public Role fetchByPrimaryKey(long roleId)
throws SystemException
null if it could not be found.
fetchByPrimaryKey in interface RolePersistenceroleId - the primary key of the role to find
null if a role with the primary key could not be found
SystemException - if a system exception occurred
public List<Role> findByCompanyId(long companyId)
throws SystemException
findByCompanyId in interface RolePersistencecompanyId - the company id to search with
SystemException - if a system exception occurred
public List<Role> findByCompanyId(long companyId,
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.
findByCompanyId in interface RolePersistencecompanyId - the company id to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Role> findByCompanyId(long companyId,
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.
findByCompanyId in interface RolePersistencecompanyId - the company id to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public Role findByCompanyId_First(long companyId,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByCompanyId_First in interface RolePersistencecompanyId - the company id to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role findByCompanyId_Last(long companyId,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByCompanyId_Last in interface RolePersistencecompanyId - the company id to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role[] findByCompanyId_PrevAndNext(long roleId,
long companyId,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByCompanyId_PrevAndNext in interface RolePersistenceroleId - the primary key of the current rolecompanyId - the company id to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred
protected Role getByCompanyId_PrevAndNext(Session session,
Role role,
long companyId,
OrderByComparator orderByComparator,
boolean previous)
public List<Role> findBySubtype(String subtype)
throws SystemException
findBySubtype in interface RolePersistencesubtype - the subtype to search with
SystemException - if a system exception occurred
public List<Role> findBySubtype(String subtype,
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.
findBySubtype in interface RolePersistencesubtype - the subtype to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Role> findBySubtype(String subtype,
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.
findBySubtype in interface RolePersistencesubtype - the subtype to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public Role findBySubtype_First(String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findBySubtype_First in interface RolePersistencesubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role findBySubtype_Last(String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findBySubtype_Last in interface RolePersistencesubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role[] findBySubtype_PrevAndNext(long roleId,
String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findBySubtype_PrevAndNext in interface RolePersistenceroleId - the primary key of the current rolesubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred
protected Role getBySubtype_PrevAndNext(Session session,
Role role,
String subtype,
OrderByComparator orderByComparator,
boolean previous)
public Role findByC_N(long companyId,
String name)
throws NoSuchRoleException,
SystemException
NoSuchRoleException if it could not be found.
findByC_N in interface RolePersistencecompanyId - the company id to search withname - the name to search with
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role fetchByC_N(long companyId,
String name)
throws SystemException
null if it could not be found. Uses the finder cache.
fetchByC_N in interface RolePersistencecompanyId - the company id to search withname - the name to search with
null if a matching role could not be found
SystemException - if a system exception occurred
public Role fetchByC_N(long companyId,
String name,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
fetchByC_N in interface RolePersistencecompanyId - the company id to search withname - the name to search with
null if a matching role could not be found
SystemException - if a system exception occurred
public List<Role> findByT_S(int type,
String subtype)
throws SystemException
findByT_S in interface RolePersistencetype - the type to search withsubtype - the subtype to search with
SystemException - if a system exception occurred
public List<Role> findByT_S(int type,
String subtype,
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.
findByT_S in interface RolePersistencetype - the type to search withsubtype - the subtype to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Role> findByT_S(int type,
String subtype,
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.
findByT_S in interface RolePersistencetype - the type to search withsubtype - the subtype to search withstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public Role findByT_S_First(int type,
String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByT_S_First in interface RolePersistencetype - the type to search withsubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role findByT_S_Last(int type,
String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByT_S_Last in interface RolePersistencetype - the type to search withsubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role[] findByT_S_PrevAndNext(long roleId,
int type,
String subtype,
OrderByComparator orderByComparator)
throws NoSuchRoleException,
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.
findByT_S_PrevAndNext in interface RolePersistenceroleId - the primary key of the current roletype - the type to search withsubtype - the subtype to search withorderByComparator - the comparator to order the set by
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred
protected Role getByT_S_PrevAndNext(Session session,
Role role,
int type,
String subtype,
OrderByComparator orderByComparator,
boolean previous)
public Role findByC_C_C(long companyId,
long classNameId,
long classPK)
throws NoSuchRoleException,
SystemException
NoSuchRoleException if it could not be found.
findByC_C_C in interface RolePersistencecompanyId - the company id to search withclassNameId - the class name id to search withclassPK - the class p k to search with
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred
public Role fetchByC_C_C(long companyId,
long classNameId,
long classPK)
throws SystemException
null if it could not be found. Uses the finder cache.
fetchByC_C_C in interface RolePersistencecompanyId - the company id to search withclassNameId - the class name id to search withclassPK - the class p k to search with
null if a matching role could not be found
SystemException - if a system exception occurred
public Role fetchByC_C_C(long companyId,
long classNameId,
long classPK,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
fetchByC_C_C in interface RolePersistencecompanyId - the company id to search withclassNameId - the class name id to search withclassPK - the class p k to search with
null if a matching role could not be found
SystemException - if a system exception occurred
public List<Role> findAll()
throws SystemException
findAll in interface RolePersistenceSystemException - if a system exception occurred
public List<Role> findAll(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.
findAll in interface RolePersistencestart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Role> findAll(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.
findAll in interface RolePersistencestart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public void removeByCompanyId(long companyId)
throws SystemException
removeByCompanyId in interface RolePersistencecompanyId - the company id to search with
SystemException - if a system exception occurred
public void removeBySubtype(String subtype)
throws SystemException
removeBySubtype in interface RolePersistencesubtype - the subtype to search with
SystemException - if a system exception occurred
public void removeByC_N(long companyId,
String name)
throws NoSuchRoleException,
SystemException
removeByC_N in interface RolePersistencecompanyId - the company id to search withname - the name to search with
SystemException - if a system exception occurred
NoSuchRoleException
public void removeByT_S(int type,
String subtype)
throws SystemException
removeByT_S in interface RolePersistencetype - the type to search withsubtype - the subtype to search with
SystemException - if a system exception occurred
public void removeByC_C_C(long companyId,
long classNameId,
long classPK)
throws NoSuchRoleException,
SystemException
removeByC_C_C in interface RolePersistencecompanyId - the company id to search withclassNameId - the class name id to search withclassPK - the class p k to search with
SystemException - if a system exception occurred
NoSuchRoleException
public void removeAll()
throws SystemException
removeAll in interface RolePersistenceSystemException - if a system exception occurred
public int countByCompanyId(long companyId)
throws SystemException
countByCompanyId in interface RolePersistencecompanyId - the company id to search with
SystemException - if a system exception occurred
public int countBySubtype(String subtype)
throws SystemException
countBySubtype in interface RolePersistencesubtype - the subtype to search with
SystemException - if a system exception occurred
public int countByC_N(long companyId,
String name)
throws SystemException
countByC_N in interface RolePersistencecompanyId - the company id to search withname - the name to search with
SystemException - if a system exception occurred
public int countByT_S(int type,
String subtype)
throws SystemException
countByT_S in interface RolePersistencetype - the type to search withsubtype - the subtype to search with
SystemException - if a system exception occurred
public int countByC_C_C(long companyId,
long classNameId,
long classPK)
throws SystemException
countByC_C_C in interface RolePersistencecompanyId - the company id to search withclassNameId - the class name id to search withclassPK - the class p k to search with
SystemException - if a system exception occurred
public int countAll()
throws SystemException
countAll in interface RolePersistenceSystemException - if a system exception occurred
public List<Group> getGroups(long pk)
throws SystemException
getGroups in interface RolePersistencepk - the primary key of the role to get the associated groups for
SystemException - if a system exception occurred
public List<Group> getGroups(long pk,
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.
getGroups in interface RolePersistencepk - the primary key of the role to get the associated groups forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Group> getGroups(long pk,
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.
getGroups in interface RolePersistencepk - the primary key of the role to get the associated groups forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public int getGroupsSize(long pk)
throws SystemException
getGroupsSize in interface RolePersistencepk - the primary key of the role to get the number of associated groups for
SystemException - if a system exception occurred
public boolean containsGroup(long pk,
long groupPK)
throws SystemException
containsGroup in interface RolePersistencepk - the primary key of the rolegroupPK - the primary key of the group
SystemException - if a system exception occurred
public boolean containsGroups(long pk)
throws SystemException
containsGroups in interface RolePersistencepk - the primary key of the role to check for associations with groups
SystemException - if a system exception occurred
public void addGroup(long pk,
long groupPK)
throws SystemException
addGroup in interface RolePersistencepk - the primary key of the rolegroupPK - the primary key of the group
SystemException - if a system exception occurred
public void addGroup(long pk,
Group group)
throws SystemException
addGroup in interface RolePersistencepk - the primary key of the rolegroup - the group
SystemException - if a system exception occurred
public void addGroups(long pk,
long[] groupPKs)
throws SystemException
addGroups in interface RolePersistencepk - the primary key of the rolegroupPKs - the primary keys of the groups
SystemException - if a system exception occurred
public void addGroups(long pk,
List<Group> groups)
throws SystemException
addGroups in interface RolePersistencepk - the primary key of the rolegroups - the groups
SystemException - if a system exception occurred
public void clearGroups(long pk)
throws SystemException
clearGroups in interface RolePersistencepk - the primary key of the role to clear the associated groups from
SystemException - if a system exception occurred
public void removeGroup(long pk,
long groupPK)
throws SystemException
removeGroup in interface RolePersistencepk - the primary key of the rolegroupPK - the primary key of the group
SystemException - if a system exception occurred
public void removeGroup(long pk,
Group group)
throws SystemException
removeGroup in interface RolePersistencepk - the primary key of the rolegroup - the group
SystemException - if a system exception occurred
public void removeGroups(long pk,
long[] groupPKs)
throws SystemException
removeGroups in interface RolePersistencepk - the primary key of the rolegroupPKs - the primary keys of the groups
SystemException - if a system exception occurred
public void removeGroups(long pk,
List<Group> groups)
throws SystemException
removeGroups in interface RolePersistencepk - the primary key of the rolegroups - the groups
SystemException - if a system exception occurred
public void setGroups(long pk,
long[] groupPKs)
throws SystemException
setGroups in interface RolePersistencepk - the primary key of the role to set the associations forgroupPKs - the primary keys of the groups to be associated with the role
SystemException - if a system exception occurred
public void setGroups(long pk,
List<Group> groups)
throws SystemException
setGroups in interface RolePersistencepk - the primary key of the role to set the associations forgroups - the groups to be associated with the role
SystemException - if a system exception occurred
public List<Permission> getPermissions(long pk)
throws SystemException
getPermissions in interface RolePersistencepk - the primary key of the role to get the associated permissions for
SystemException - if a system exception occurred
public List<Permission> getPermissions(long pk,
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.
getPermissions in interface RolePersistencepk - the primary key of the role to get the associated permissions forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<Permission> getPermissions(long pk,
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.
getPermissions in interface RolePersistencepk - the primary key of the role to get the associated permissions forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public int getPermissionsSize(long pk)
throws SystemException
getPermissionsSize in interface RolePersistencepk - the primary key of the role to get the number of associated permissions for
SystemException - if a system exception occurred
public boolean containsPermission(long pk,
long permissionPK)
throws SystemException
containsPermission in interface RolePersistencepk - the primary key of the rolepermissionPK - the primary key of the permission
SystemException - if a system exception occurred
public boolean containsPermissions(long pk)
throws SystemException
containsPermissions in interface RolePersistencepk - the primary key of the role to check for associations with permissions
SystemException - if a system exception occurred
public void addPermission(long pk,
long permissionPK)
throws SystemException
addPermission in interface RolePersistencepk - the primary key of the rolepermissionPK - the primary key of the permission
SystemException - if a system exception occurred
public void addPermission(long pk,
Permission permission)
throws SystemException
addPermission in interface RolePersistencepk - the primary key of the rolepermission - the permission
SystemException - if a system exception occurred
public void addPermissions(long pk,
long[] permissionPKs)
throws SystemException
addPermissions in interface RolePersistencepk - the primary key of the rolepermissionPKs - the primary keys of the permissions
SystemException - if a system exception occurred
public void addPermissions(long pk,
List<Permission> permissions)
throws SystemException
addPermissions in interface RolePersistencepk - the primary key of the rolepermissions - the permissions
SystemException - if a system exception occurred
public void clearPermissions(long pk)
throws SystemException
clearPermissions in interface RolePersistencepk - the primary key of the role to clear the associated permissions from
SystemException - if a system exception occurred
public void removePermission(long pk,
long permissionPK)
throws SystemException
removePermission in interface RolePersistencepk - the primary key of the rolepermissionPK - the primary key of the permission
SystemException - if a system exception occurred
public void removePermission(long pk,
Permission permission)
throws SystemException
removePermission in interface RolePersistencepk - the primary key of the rolepermission - the permission
SystemException - if a system exception occurred
public void removePermissions(long pk,
long[] permissionPKs)
throws SystemException
removePermissions in interface RolePersistencepk - the primary key of the rolepermissionPKs - the primary keys of the permissions
SystemException - if a system exception occurred
public void removePermissions(long pk,
List<Permission> permissions)
throws SystemException
removePermissions in interface RolePersistencepk - the primary key of the rolepermissions - the permissions
SystemException - if a system exception occurred
public void setPermissions(long pk,
long[] permissionPKs)
throws SystemException
setPermissions in interface RolePersistencepk - the primary key of the role to set the associations forpermissionPKs - the primary keys of the permissions to be associated with the role
SystemException - if a system exception occurred
public void setPermissions(long pk,
List<Permission> permissions)
throws SystemException
setPermissions in interface RolePersistencepk - the primary key of the role to set the associations forpermissions - the permissions to be associated with the role
SystemException - if a system exception occurred
public List<User> getUsers(long pk)
throws SystemException
getUsers in interface RolePersistencepk - the primary key of the role to get the associated users for
SystemException - if a system exception occurred
public List<User> getUsers(long pk,
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.
getUsers in interface RolePersistencepk - the primary key of the role to get the associated users forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)
SystemException - if a system exception occurred
public List<User> getUsers(long pk,
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.
getUsers in interface RolePersistencepk - the primary key of the role to get the associated users forstart - the lower bound of the range of roles to returnend - the upper bound of the range of roles to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public int getUsersSize(long pk)
throws SystemException
getUsersSize in interface RolePersistencepk - the primary key of the role to get the number of associated users for
SystemException - if a system exception occurred
public boolean containsUser(long pk,
long userPK)
throws SystemException
containsUser in interface RolePersistencepk - the primary key of the roleuserPK - the primary key of the user
SystemException - if a system exception occurred
public boolean containsUsers(long pk)
throws SystemException
containsUsers in interface RolePersistencepk - the primary key of the role to check for associations with users
SystemException - if a system exception occurred
public void addUser(long pk,
long userPK)
throws SystemException
addUser in interface RolePersistencepk - the primary key of the roleuserPK - the primary key of the user
SystemException - if a system exception occurred
public void addUser(long pk,
User user)
throws SystemException
addUser in interface RolePersistencepk - the primary key of the roleuser - the user
SystemException - if a system exception occurred
public void addUsers(long pk,
long[] userPKs)
throws SystemException
addUsers in interface RolePersistencepk - the primary key of the roleuserPKs - the primary keys of the users
SystemException - if a system exception occurred
public void addUsers(long pk,
List<User> users)
throws SystemException
addUsers in interface RolePersistencepk - the primary key of the roleusers - the users
SystemException - if a system exception occurred
public void clearUsers(long pk)
throws SystemException
clearUsers in interface RolePersistencepk - the primary key of the role to clear the associated users from
SystemException - if a system exception occurred
public void removeUser(long pk,
long userPK)
throws SystemException
removeUser in interface RolePersistencepk - the primary key of the roleuserPK - the primary key of the user
SystemException - if a system exception occurred
public void removeUser(long pk,
User user)
throws SystemException
removeUser in interface RolePersistencepk - the primary key of the roleuser - the user
SystemException - if a system exception occurred
public void removeUsers(long pk,
long[] userPKs)
throws SystemException
removeUsers in interface RolePersistencepk - the primary key of the roleuserPKs - the primary keys of the users
SystemException - if a system exception occurred
public void removeUsers(long pk,
List<User> users)
throws SystemException
removeUsers in interface RolePersistencepk - the primary key of the roleusers - the users
SystemException - if a system exception occurred
public void setUsers(long pk,
long[] userPKs)
throws SystemException
setUsers in interface RolePersistencepk - the primary key of the role to set the associations foruserPKs - the primary keys of the users to be associated with the role
SystemException - if a system exception occurred
public void setUsers(long pk,
List<User> users)
throws SystemException
setUsers in interface RolePersistencepk - the primary key of the role to set the associations forusers - the users to be associated with the role
SystemException - if a system exception occurredpublic void afterPropertiesSet()
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||