com.liferay.portal.model
Interface PasswordPolicyModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
PasswordPolicy

public interface PasswordPolicyModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the PasswordPolicy table in the database.

Author:
Brian Wing Shun Chan
See Also:
PasswordPolicy, PasswordPolicyImpl, PasswordPolicyModelImpl

Method Summary
 boolean getAllowDictionaryWords()
           
 boolean getChangeable()
           
 boolean getChangeRequired()
           
 boolean getCheckSyntax()
           
 long getCompanyId()
           
 java.util.Date getCreateDate()
           
 boolean getDefaultPolicy()
           
 java.lang.String getDescription()
           
 boolean getExpireable()
           
 int getGraceLimit()
           
 boolean getHistory()
           
 int getHistoryCount()
           
 boolean getLockout()
           
 long getLockoutDuration()
           
 long getMaxAge()
           
 int getMaxFailure()
           
 long getMinAge()
           
 int getMinLength()
           
 java.util.Date getModifiedDate()
           
 java.lang.String getName()
           
 long getPasswordPolicyId()
           
 long getPrimaryKey()
           
 boolean getRequireUnlock()
           
 long getResetFailureCount()
           
 long getUserId()
           
 java.lang.String getUserName()
           
 long getWarningTime()
           
 boolean isAllowDictionaryWords()
           
 boolean isChangeable()
           
 boolean isChangeRequired()
           
 boolean isCheckSyntax()
           
 boolean isDefaultPolicy()
           
 boolean isExpireable()
           
 boolean isHistory()
           
 boolean isLockout()
           
 boolean isRequireUnlock()
           
 void setAllowDictionaryWords(boolean allowDictionaryWords)
           
 void setChangeable(boolean changeable)
           
 void setChangeRequired(boolean changeRequired)
           
 void setCheckSyntax(boolean checkSyntax)
           
 void setCompanyId(long companyId)
           
 void setCreateDate(java.util.Date createDate)
           
 void setDefaultPolicy(boolean defaultPolicy)
           
 void setDescription(java.lang.String description)
           
 void setExpireable(boolean expireable)
           
 void setGraceLimit(int graceLimit)
           
 void setHistory(boolean history)
           
 void setHistoryCount(int historyCount)
           
 void setLockout(boolean lockout)
           
 void setLockoutDuration(long lockoutDuration)
           
 void setMaxAge(long maxAge)
           
 void setMaxFailure(int maxFailure)
           
 void setMinAge(long minAge)
           
 void setMinLength(int minLength)
           
 void setModifiedDate(java.util.Date modifiedDate)
           
 void setName(java.lang.String name)
           
 void setPasswordPolicyId(long passwordPolicyId)
           
 void setPrimaryKey(long pk)
           
 void setRequireUnlock(boolean requireUnlock)
           
 void setResetFailureCount(long resetFailureCount)
           
 void setUserId(long userId)
           
 void setUserName(java.lang.String userName)
           
 void setWarningTime(long warningTime)
           
 PasswordPolicy toEscapedModel()
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getExpandoBridge, getPrimaryKeyObj, isEscapedModel, isNew, setEscapedModel, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

long getPrimaryKey()

setPrimaryKey

void setPrimaryKey(long pk)

getPasswordPolicyId

long getPasswordPolicyId()

setPasswordPolicyId

void setPasswordPolicyId(long passwordPolicyId)

getCompanyId

long getCompanyId()

setCompanyId

void setCompanyId(long companyId)

getUserId

long getUserId()

setUserId

void setUserId(long userId)

getUserName

java.lang.String getUserName()

setUserName

void setUserName(java.lang.String userName)

getCreateDate

java.util.Date getCreateDate()

setCreateDate

void setCreateDate(java.util.Date createDate)

getModifiedDate

java.util.Date getModifiedDate()

setModifiedDate

void setModifiedDate(java.util.Date modifiedDate)

getDefaultPolicy

boolean getDefaultPolicy()

isDefaultPolicy

boolean isDefaultPolicy()

setDefaultPolicy

void setDefaultPolicy(boolean defaultPolicy)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getDescription

java.lang.String getDescription()

setDescription

void setDescription(java.lang.String description)

getChangeable

boolean getChangeable()

isChangeable

boolean isChangeable()

setChangeable

void setChangeable(boolean changeable)

getChangeRequired

boolean getChangeRequired()

isChangeRequired

boolean isChangeRequired()

setChangeRequired

void setChangeRequired(boolean changeRequired)

getMinAge

long getMinAge()

setMinAge

void setMinAge(long minAge)

getCheckSyntax

boolean getCheckSyntax()

isCheckSyntax

boolean isCheckSyntax()

setCheckSyntax

void setCheckSyntax(boolean checkSyntax)

getAllowDictionaryWords

boolean getAllowDictionaryWords()

isAllowDictionaryWords

boolean isAllowDictionaryWords()

setAllowDictionaryWords

void setAllowDictionaryWords(boolean allowDictionaryWords)

getMinLength

int getMinLength()

setMinLength

void setMinLength(int minLength)

getHistory

boolean getHistory()

isHistory

boolean isHistory()

setHistory

void setHistory(boolean history)

getHistoryCount

int getHistoryCount()

setHistoryCount

void setHistoryCount(int historyCount)

getExpireable

boolean getExpireable()

isExpireable

boolean isExpireable()

setExpireable

void setExpireable(boolean expireable)

getMaxAge

long getMaxAge()

setMaxAge

void setMaxAge(long maxAge)

getWarningTime

long getWarningTime()

setWarningTime

void setWarningTime(long warningTime)

getGraceLimit

int getGraceLimit()

setGraceLimit

void setGraceLimit(int graceLimit)

getLockout

boolean getLockout()

isLockout

boolean isLockout()

setLockout

void setLockout(boolean lockout)

getMaxFailure

int getMaxFailure()

setMaxFailure

void setMaxFailure(int maxFailure)

getLockoutDuration

long getLockoutDuration()

setLockoutDuration

void setLockoutDuration(long lockoutDuration)

getRequireUnlock

boolean getRequireUnlock()

isRequireUnlock

boolean isRequireUnlock()

setRequireUnlock

void setRequireUnlock(boolean requireUnlock)

getResetFailureCount

long getResetFailureCount()

setResetFailureCount

void setResetFailureCount(long resetFailureCount)

toEscapedModel

PasswordPolicy toEscapedModel()