Liferay 6.1.10-ee-ga1

Uses of Class
com.liferay.portal.NoSuchPasswordPolicyException

Packages that use NoSuchPasswordPolicyException
com.liferay.portal.service.persistence This package defines the portal service persistence interfaces and classes. 
 

Uses of NoSuchPasswordPolicyException in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that throw NoSuchPasswordPolicyException
static PasswordPolicy PasswordPolicyUtil.findByC_DP(long companyId, boolean defaultPolicy)
          Returns the password policy where companyId = ? and defaultPolicy = ? or throws a NoSuchPasswordPolicyException if it could not be found.
 PasswordPolicy PasswordPolicyPersistence.findByC_DP(long companyId, boolean defaultPolicy)
          Returns the password policy where companyId = ? and defaultPolicy = ? or throws a NoSuchPasswordPolicyException if it could not be found.
static PasswordPolicy PasswordPolicyUtil.findByC_N(long companyId, String name)
          Returns the password policy where companyId = ? and name = ? or throws a NoSuchPasswordPolicyException if it could not be found.
 PasswordPolicy PasswordPolicyPersistence.findByC_N(long companyId, String name)
          Returns the password policy where companyId = ? and name = ? or throws a NoSuchPasswordPolicyException if it could not be found.
static PasswordPolicy PasswordPolicyUtil.findByPrimaryKey(long passwordPolicyId)
          Returns the password policy with the primary key or throws a NoSuchPasswordPolicyException if it could not be found.
 PasswordPolicy PasswordPolicyPersistence.findByPrimaryKey(long passwordPolicyId)
          Returns the password policy with the primary key or throws a NoSuchPasswordPolicyException if it could not be found.
static PasswordPolicy PasswordPolicyUtil.remove(long passwordPolicyId)
          Removes the password policy with the primary key from the database.
 PasswordPolicy PasswordPolicyPersistence.remove(long passwordPolicyId)
          Removes the password policy with the primary key from the database.
static void PasswordPolicyUtil.removeByC_DP(long companyId, boolean defaultPolicy)
          Removes the password policy where companyId = ? and defaultPolicy = ? from the database.
 void PasswordPolicyPersistence.removeByC_DP(long companyId, boolean defaultPolicy)
          Removes the password policy where companyId = ? and defaultPolicy = ? from the database.
static void PasswordPolicyUtil.removeByC_N(long companyId, String name)
          Removes the password policy where companyId = ? and name = ? from the database.
 void PasswordPolicyPersistence.removeByC_N(long companyId, String name)
          Removes the password policy where companyId = ? and name = ? from the database.
 


Liferay 6.1.10-ee-ga1