Interface AccountPolicy
-
- All Superinterfaces:
Entity
,Policy
,Serializable
- All Known Implementing Classes:
JPAAccountPolicy
public interface AccountPolicy extends Policy
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
add(ExternalResource resource)
boolean
add(Implementation rule)
int
getMaxAuthenticationAttempts()
Set<? extends ExternalResource>
getResources()
List<? extends Implementation>
getRules()
boolean
isPropagateSuspension()
void
setMaxAuthenticationAttempts(int maxAuthenticationAttempts)
void
setPropagateSuspension(boolean propagateSuspension)
-
-
-
Method Detail
-
isPropagateSuspension
boolean isPropagateSuspension()
-
setPropagateSuspension
void setPropagateSuspension(boolean propagateSuspension)
-
getMaxAuthenticationAttempts
int getMaxAuthenticationAttempts()
-
setMaxAuthenticationAttempts
void setMaxAuthenticationAttempts(int maxAuthenticationAttempts)
-
add
boolean add(Implementation rule)
-
getRules
List<? extends Implementation> getRules()
-
add
boolean add(ExternalResource resource)
-
getResources
Set<? extends ExternalResource> getResources()
-
-