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 booleanadd(ExternalResource resource)booleanadd(Implementation rule)intgetMaxAuthenticationAttempts()Set<? extends ExternalResource>getResources()List<? extends Implementation>getRules()booleanisPropagateSuspension()voidsetMaxAuthenticationAttempts(int maxAuthenticationAttempts)voidsetPropagateSuspension(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()
-
-