Interface PasswordPolicyPersistence
- All Superinterfaces:
BasePersistence<PasswordPolicy>
Caching information and settings can be found in portal.properties
- Author:
- Brian Wing Shun Chan
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionvoidcacheResult(PasswordPolicy passwordPolicy) Caches the password policy in the entity cache if it is enabled.voidcacheResult(List<PasswordPolicy> passwordPolicies) Caches the password policies in the entity cache if it is enabled.intcountAll()Returns the number of password policies.intcountByC_N(long companyId, String name) Returns the number of password policies where companyId = ? and name = ?.intcountByCompanyId(long companyId) Returns the number of password policies where companyId = ?.intcountByUuid(String uuid) Returns the number of password policies where uuid = ?.intcountByUuid_C(String uuid, long companyId) Returns the number of password policies where uuid = ? and companyId = ?.create(long passwordPolicyId) Creates a new password policy with the primary key.fetchByC_N(long companyId, String name) Returns the password policy where companyId = ? and name = ? or returnsnullif it could not be found.fetchByC_N(long companyId, String name, boolean useFinderCache) Returns the password policy where companyId = ? and name = ? or returnsnullif it could not be found, optionally using the finder cache.fetchByCompanyId_First(long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where companyId = ?.fetchByPrimaryKey(long passwordPolicyId) Returns the password policy with the primary key or returnsnullif it could not be found.fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where uuid = ? and companyId = ?.fetchByUuid_First(String uuid, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where uuid = ?.intfilterCountByCompanyId(long companyId) Returns the number of password policies that the user has permission to view where companyId = ?.intfilterCountByUuid(String uuid) Returns the number of password policies that the user has permission to view where uuid = ?.intfilterCountByUuid_C(String uuid, long companyId) Returns the number of password policies that the user has permission to view where uuid = ? and companyId = ?.filterFindByCompanyId(long companyId) Returns all the password policies that the user has permission to view where companyId = ?.filterFindByCompanyId(long companyId, int start, int end) Returns a range of all the password policies that the user has permission to view where companyId = ?.filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where companyId = ?.filterFindByUuid(String uuid) Returns all the password policies that the user has permission to view where uuid = ?.filterFindByUuid(String uuid, int start, int end) Returns a range of all the password policies that the user has permission to view where uuid = ?.filterFindByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where uuid = ?.filterFindByUuid_C(String uuid, long companyId) Returns all the password policies that the user has permission to view where uuid = ? and companyId = ?.filterFindByUuid_C(String uuid, long companyId, int start, int end) Returns a range of all the password policies that the user has permission to view where uuid = ? and companyId = ?.filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where uuid = ? and companyId = ?.findAll()Returns all the password policies.findAll(int start, int end) Returns a range of all the password policies.findAll(int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies.findAll(int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies.Returns the password policy where companyId = ? and name = ? or throws aNoSuchPasswordPolicyExceptionif it could not be found.findByCompanyId(long companyId) Returns all the password policies where companyId = ?.findByCompanyId(long companyId, int start, int end) Returns a range of all the password policies where companyId = ?.findByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where companyId = ?.findByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where companyId = ?.findByCompanyId_First(long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where companyId = ?.findByPrimaryKey(long passwordPolicyId) Returns the password policy with the primary key or throws aNoSuchPasswordPolicyExceptionif it could not be found.findByUuid(String uuid) Returns all the password policies where uuid = ?.findByUuid(String uuid, int start, int end) Returns a range of all the password policies where uuid = ?.findByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where uuid = ?.findByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where uuid = ?.findByUuid_C(String uuid, long companyId) Returns all the password policies where uuid = ? and companyId = ?.findByUuid_C(String uuid, long companyId, int start, int end) Returns a range of all the password policies where uuid = ? and companyId = ?.findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where uuid = ? and companyId = ?.findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where uuid = ? and companyId = ?.findByUuid_C_First(String uuid, long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where uuid = ? and companyId = ?.findByUuid_First(String uuid, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where uuid = ?.remove(long passwordPolicyId) Removes the password policy with the primary key from the database.voidRemoves all the password policies from the database.removeByC_N(long companyId, String name) Removes the password policy where companyId = ? and name = ? from the database.voidremoveByCompanyId(long companyId) Removes all the password policies where companyId = ? from the database.voidremoveByUuid(String uuid) Removes all the password policies where uuid = ? from the database.voidremoveByUuid_C(String uuid, long companyId) Removes all the password policies where uuid = ? and companyId = ? from the database.updateImpl(PasswordPolicy passwordPolicy) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQuery, dslQueryCount, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
-
Method Details
-
findByUuid
Returns all the password policies where uuid = ?.- Parameters:
uuid- the uuid- Returns:
- the matching password policies
-
findByUuid
Returns a range of all the password policies where uuid = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies
-
findByUuid
List<PasswordPolicy> findByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where uuid = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies
-
findByUuid
List<PasswordPolicy> findByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where uuid = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of matching password policies
-
findByUuid_First
PasswordPolicy findByUuid_First(String uuid, OrderByComparator<PasswordPolicy> orderByComparator) throws NoSuchPasswordPolicyException Returns the first password policy in the ordered set where uuid = ?.- Parameters:
uuid- the uuidorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy
- Throws:
NoSuchPasswordPolicyException- if a matching password policy could not be found
-
fetchByUuid_First
Returns the first password policy in the ordered set where uuid = ?.- Parameters:
uuid- the uuidorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy, or
nullif a matching password policy could not be found
-
filterFindByUuid
Returns all the password policies that the user has permission to view where uuid = ?.- Parameters:
uuid- the uuid- Returns:
- the matching password policies that the user has permission to view
-
filterFindByUuid
Returns a range of all the password policies that the user has permission to view where uuid = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies that the user has permission to view
-
filterFindByUuid
List<PasswordPolicy> filterFindByUuid(String uuid, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where uuid = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies that the user has permission to view
-
removeByUuid
Removes all the password policies where uuid = ? from the database.- Parameters:
uuid- the uuid
-
countByUuid
Returns the number of password policies where uuid = ?.- Parameters:
uuid- the uuid- Returns:
- the number of matching password policies
-
filterCountByUuid
Returns the number of password policies that the user has permission to view where uuid = ?.- Parameters:
uuid- the uuid- Returns:
- the number of matching password policies that the user has permission to view
-
findByUuid_C
Returns all the password policies where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company ID- Returns:
- the matching password policies
-
findByUuid_C
Returns a range of all the password policies where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidcompanyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies
-
findByUuid_C
List<PasswordPolicy> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidcompanyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies
-
findByUuid_C
List<PasswordPolicy> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidcompanyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of matching password policies
-
findByUuid_C_First
PasswordPolicy findByUuid_C_First(String uuid, long companyId, OrderByComparator<PasswordPolicy> orderByComparator) throws NoSuchPasswordPolicyException Returns the first password policy in the ordered set where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company IDorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy
- Throws:
NoSuchPasswordPolicyException- if a matching password policy could not be found
-
fetchByUuid_C_First
PasswordPolicy fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company IDorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy, or
nullif a matching password policy could not be found
-
filterFindByUuid_C
Returns all the password policies that the user has permission to view where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company ID- Returns:
- the matching password policies that the user has permission to view
-
filterFindByUuid_C
Returns a range of all the password policies that the user has permission to view where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidcompanyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies that the user has permission to view
-
filterFindByUuid_C
List<PasswordPolicy> filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
uuid- the uuidcompanyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies that the user has permission to view
-
removeByUuid_C
Removes all the password policies where uuid = ? and companyId = ? from the database.- Parameters:
uuid- the uuidcompanyId- the company ID
-
countByUuid_C
Returns the number of password policies where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company ID- Returns:
- the number of matching password policies
-
filterCountByUuid_C
Returns the number of password policies that the user has permission to view where uuid = ? and companyId = ?.- Parameters:
uuid- the uuidcompanyId- the company ID- Returns:
- the number of matching password policies that the user has permission to view
-
findByCompanyId
Returns all the password policies where companyId = ?.- Parameters:
companyId- the company ID- Returns:
- the matching password policies
-
findByCompanyId
Returns a range of all the password policies where companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
companyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies
-
findByCompanyId
List<PasswordPolicy> findByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies where companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
companyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies
-
findByCompanyId
List<PasswordPolicy> findByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies where companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
companyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of matching password policies
-
findByCompanyId_First
PasswordPolicy findByCompanyId_First(long companyId, OrderByComparator<PasswordPolicy> orderByComparator) throws NoSuchPasswordPolicyException Returns the first password policy in the ordered set where companyId = ?.- Parameters:
companyId- the company IDorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy
- Throws:
NoSuchPasswordPolicyException- if a matching password policy could not be found
-
fetchByCompanyId_First
PasswordPolicy fetchByCompanyId_First(long companyId, OrderByComparator<PasswordPolicy> orderByComparator) Returns the first password policy in the ordered set where companyId = ?.- Parameters:
companyId- the company IDorderByComparator- the comparator to order the set by (optionallynull)- Returns:
- the first matching password policy, or
nullif a matching password policy could not be found
-
filterFindByCompanyId
Returns all the password policies that the user has permission to view where companyId = ?.- Parameters:
companyId- the company ID- Returns:
- the matching password policies that the user has permission to view
-
filterFindByCompanyId
Returns a range of all the password policies that the user has permission to view where companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
companyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of matching password policies that the user has permission to view
-
filterFindByCompanyId
List<PasswordPolicy> filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies that the user has permissions to view where companyId = ?.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
companyId- the company IDstart- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of matching password policies that the user has permission to view
-
removeByCompanyId
void removeByCompanyId(long companyId) Removes all the password policies where companyId = ? from the database.- Parameters:
companyId- the company ID
-
countByCompanyId
int countByCompanyId(long companyId) Returns the number of password policies where companyId = ?.- Parameters:
companyId- the company ID- Returns:
- the number of matching password policies
-
filterCountByCompanyId
int filterCountByCompanyId(long companyId) Returns the number of password policies that the user has permission to view where companyId = ?.- Parameters:
companyId- the company ID- Returns:
- the number of matching password policies that the user has permission to view
-
findByC_N
Returns the password policy where companyId = ? and name = ? or throws aNoSuchPasswordPolicyExceptionif it could not be found.- Parameters:
companyId- the company IDname- the name- Returns:
- the matching password policy
- Throws:
NoSuchPasswordPolicyException- if a matching password policy could not be found
-
fetchByC_N
Returns the password policy where companyId = ? and name = ? or returnsnullif it could not be found. Uses the finder cache.- Parameters:
companyId- the company IDname- the name- Returns:
- the matching password policy, or
nullif a matching password policy could not be found
-
fetchByC_N
Returns the password policy where companyId = ? and name = ? or returnsnullif it could not be found, optionally using the finder cache.- Parameters:
companyId- the company IDname- the nameuseFinderCache- whether to use the finder cache- Returns:
- the matching password policy, or
nullif a matching password policy could not be found
-
removeByC_N
Removes the password policy where companyId = ? and name = ? from the database.- Parameters:
companyId- the company IDname- the name- Returns:
- the password policy that was removed
- Throws:
NoSuchPasswordPolicyException
-
countByC_N
Returns the number of password policies where companyId = ? and name = ?.- Parameters:
companyId- the company IDname- the name- Returns:
- the number of matching password policies
-
cacheResult
Caches the password policy in the entity cache if it is enabled.- Parameters:
passwordPolicy- the password policy
-
cacheResult
Caches the password policies in the entity cache if it is enabled.- Parameters:
passwordPolicies- the password policies
-
create
Creates a new password policy with the primary key. Does not add the password policy to the database.- Parameters:
passwordPolicyId- the primary key for the new password policy- Returns:
- the new password policy
-
remove
Removes the password policy with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
passwordPolicyId- the primary key of the password policy- Returns:
- the password policy that was removed
- Throws:
NoSuchPasswordPolicyException- if a password policy with the primary key could not be found
-
updateImpl
-
findByPrimaryKey
Returns the password policy with the primary key or throws aNoSuchPasswordPolicyExceptionif it could not be found.- Parameters:
passwordPolicyId- the primary key of the password policy- Returns:
- the password policy
- Throws:
NoSuchPasswordPolicyException- if a password policy with the primary key could not be found
-
fetchByPrimaryKey
Returns the password policy with the primary key or returnsnullif it could not be found.- Parameters:
passwordPolicyId- the primary key of the password policy- Returns:
- the password policy, or
nullif a password policy with the primary key could not be found
-
findAll
List<PasswordPolicy> findAll()Returns all the password policies.- Returns:
- the password policies
-
findAll
Returns a range of all the password policies.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
start- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)- Returns:
- the range of password policies
-
findAll
List<PasswordPolicy> findAll(int start, int end, OrderByComparator<PasswordPolicy> orderByComparator) Returns an ordered range of all the password policies.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
start- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the ordered range of password policies
-
findAll
List<PasswordPolicy> findAll(int start, int end, OrderByComparator<PasswordPolicy> orderByComparator, boolean useFinderCache) Returns an ordered range of all the password policies.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.portal.model.impl.PasswordPolicyModelImpl.- Parameters:
start- the lower bound of the range of password policiesend- the upper bound of the range of password policies (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of password policies
-
removeAll
void removeAll()Removes all the password policies from the database. -
countAll
int countAll()Returns the number of password policies.- Returns:
- the number of password policies
-