public class PasswordPolicyServiceWrapper extends Object implements PasswordPolicyService, ServiceWrapper<PasswordPolicyService>
PasswordPolicyService.PasswordPolicyService| Constructor and Description |
|---|
PasswordPolicyServiceWrapper(PasswordPolicyService passwordPolicyService) |
| Modifier and Type | Method and Description |
|---|---|
PasswordPolicy |
addPasswordPolicy(String name,
String description,
boolean changeable,
boolean changeRequired,
long minAge,
boolean checkSyntax,
boolean allowDictionaryWords,
int minAlphanumeric,
int minLength,
int minLowerCase,
int minNumbers,
int minSymbols,
int minUpperCase,
String regex,
boolean history,
int historyCount,
boolean expireable,
long maxAge,
long warningTime,
int graceLimit,
boolean lockout,
int maxFailure,
long lockoutDuration,
long resetFailureCount,
long resetTicketMaxAge,
ServiceContext serviceContext)
NOTE FOR DEVELOPERS:
Never modify or reference this interface directly.
|
void |
deletePasswordPolicy(long passwordPolicyId) |
PasswordPolicy |
fetchPasswordPolicy(long passwordPolicyId) |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PasswordPolicyService |
getWrappedService() |
List<PasswordPolicy> |
search(long companyId,
String name,
int start,
int end,
OrderByComparator<PasswordPolicy> obc) |
int |
searchCount(long companyId,
String name) |
void |
setWrappedService(PasswordPolicyService passwordPolicyService) |
PasswordPolicy |
updatePasswordPolicy(long passwordPolicyId,
String name,
String description,
boolean changeable,
boolean changeRequired,
long minAge,
boolean checkSyntax,
boolean allowDictionaryWords,
int minAlphanumeric,
int minLength,
int minLowerCase,
int minNumbers,
int minSymbols,
int minUpperCase,
String regex,
boolean history,
int historyCount,
boolean expireable,
long maxAge,
long warningTime,
int graceLimit,
boolean lockout,
int maxFailure,
long lockoutDuration,
long resetFailureCount,
long resetTicketMaxAge,
ServiceContext serviceContext) |
public PasswordPolicyServiceWrapper(PasswordPolicyService passwordPolicyService)
public PasswordPolicy addPasswordPolicy(String name, String description, boolean changeable, boolean changeRequired, long minAge, boolean checkSyntax, boolean allowDictionaryWords, int minAlphanumeric, int minLength, int minLowerCase, int minNumbers, int minSymbols, int minUpperCase, String regex, boolean history, int historyCount, boolean expireable, long maxAge, long warningTime, int graceLimit, boolean lockout, int maxFailure, long lockoutDuration, long resetFailureCount, long resetTicketMaxAge, ServiceContext serviceContext) throws PortalException
PasswordPolicyServiceUtil to access the password policy remote service. Add custom service methods to com.liferay.portal.service.impl.PasswordPolicyServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.addPasswordPolicy in interface PasswordPolicyServicePortalExceptionpublic void deletePasswordPolicy(long passwordPolicyId)
throws PortalException
deletePasswordPolicy in interface PasswordPolicyServicePortalExceptionpublic PasswordPolicy fetchPasswordPolicy(long passwordPolicyId) throws PortalException
fetchPasswordPolicy in interface PasswordPolicyServicePortalExceptionpublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface PasswordPolicyServicepublic List<PasswordPolicy> search(long companyId, String name, int start, int end, OrderByComparator<PasswordPolicy> obc)
search in interface PasswordPolicyServicepublic int searchCount(long companyId,
String name)
searchCount in interface PasswordPolicyServicepublic PasswordPolicy updatePasswordPolicy(long passwordPolicyId, String name, String description, boolean changeable, boolean changeRequired, long minAge, boolean checkSyntax, boolean allowDictionaryWords, int minAlphanumeric, int minLength, int minLowerCase, int minNumbers, int minSymbols, int minUpperCase, String regex, boolean history, int historyCount, boolean expireable, long maxAge, long warningTime, int graceLimit, boolean lockout, int maxFailure, long lockoutDuration, long resetFailureCount, long resetTicketMaxAge, ServiceContext serviceContext) throws PortalException
updatePasswordPolicy in interface PasswordPolicyServicePortalExceptionpublic PasswordPolicyService getWrappedService()
getWrappedService in interface ServiceWrapper<PasswordPolicyService>public void setWrappedService(PasswordPolicyService passwordPolicyService)
setWrappedService in interface ServiceWrapper<PasswordPolicyService>