1
22
23 package com.liferay.portal.model;
24
25 import com.liferay.portal.SystemException;
26
27 import java.util.Date;
28
29
49 public interface PasswordPolicyModel extends BaseModel<PasswordPolicy> {
50 public long getPrimaryKey();
51
52 public void setPrimaryKey(long pk);
53
54 public long getPasswordPolicyId();
55
56 public void setPasswordPolicyId(long passwordPolicyId);
57
58 public long getCompanyId();
59
60 public void setCompanyId(long companyId);
61
62 public long getUserId();
63
64 public void setUserId(long userId);
65
66 public String getUserUuid() throws SystemException;
67
68 public void setUserUuid(String userUuid);
69
70 public String getUserName();
71
72 public void setUserName(String userName);
73
74 public Date getCreateDate();
75
76 public void setCreateDate(Date createDate);
77
78 public Date getModifiedDate();
79
80 public void setModifiedDate(Date modifiedDate);
81
82 public boolean getDefaultPolicy();
83
84 public boolean isDefaultPolicy();
85
86 public void setDefaultPolicy(boolean defaultPolicy);
87
88 public String getName();
89
90 public void setName(String name);
91
92 public String getDescription();
93
94 public void setDescription(String description);
95
96 public boolean getChangeable();
97
98 public boolean isChangeable();
99
100 public void setChangeable(boolean changeable);
101
102 public boolean getChangeRequired();
103
104 public boolean isChangeRequired();
105
106 public void setChangeRequired(boolean changeRequired);
107
108 public long getMinAge();
109
110 public void setMinAge(long minAge);
111
112 public boolean getCheckSyntax();
113
114 public boolean isCheckSyntax();
115
116 public void setCheckSyntax(boolean checkSyntax);
117
118 public boolean getAllowDictionaryWords();
119
120 public boolean isAllowDictionaryWords();
121
122 public void setAllowDictionaryWords(boolean allowDictionaryWords);
123
124 public int getMinLength();
125
126 public void setMinLength(int minLength);
127
128 public boolean getHistory();
129
130 public boolean isHistory();
131
132 public void setHistory(boolean history);
133
134 public int getHistoryCount();
135
136 public void setHistoryCount(int historyCount);
137
138 public boolean getExpireable();
139
140 public boolean isExpireable();
141
142 public void setExpireable(boolean expireable);
143
144 public long getMaxAge();
145
146 public void setMaxAge(long maxAge);
147
148 public long getWarningTime();
149
150 public void setWarningTime(long warningTime);
151
152 public int getGraceLimit();
153
154 public void setGraceLimit(int graceLimit);
155
156 public boolean getLockout();
157
158 public boolean isLockout();
159
160 public void setLockout(boolean lockout);
161
162 public int getMaxFailure();
163
164 public void setMaxFailure(int maxFailure);
165
166 public long getLockoutDuration();
167
168 public void setLockoutDuration(long lockoutDuration);
169
170 public boolean getRequireUnlock();
171
172 public boolean isRequireUnlock();
173
174 public void setRequireUnlock(boolean requireUnlock);
175
176 public long getResetFailureCount();
177
178 public void setResetFailureCount(long resetFailureCount);
179
180 public PasswordPolicy toEscapedModel();
181 }