Package org.apache.syncope.core.logic.wa
Class MfaTrusStorageLogic
- java.lang.Object
-
- org.apache.syncope.core.logic.AbstractLogic<T>
-
- org.apache.syncope.core.logic.AbstractTransactionalLogic<AuthProfileTO>
-
- org.apache.syncope.core.logic.AbstractAuthProfileLogic
-
- org.apache.syncope.core.logic.wa.MfaTrusStorageLogic
-
public class MfaTrusStorageLogic extends AbstractAuthProfileLogic
-
-
Field Summary
Fields Modifier and Type Field Description protected EntityFactory
entityFactory
-
Fields inherited from class org.apache.syncope.core.logic.AbstractAuthProfileLogic
authProfileDAO, binder
-
Fields inherited from class org.apache.syncope.core.logic.AbstractLogic
LOG
-
-
Constructor Summary
Constructors Constructor Description MfaTrusStorageLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
create(String owner, MfaTrustedDevice device)
void
delete(OffsetDateTime expirationDate, String recordKey)
Pair<Integer,List<MfaTrustedDevice>>
search(Integer page, Integer itemsPerPage, String principal, Long id, OffsetDateTime recordDate, List<OrderByClause> orderByClauses)
-
Methods inherited from class org.apache.syncope.core.logic.AbstractAuthProfileLogic
resolveReference
-
Methods inherited from class org.apache.syncope.core.logic.AbstractLogic
resolveBeanReference
-
-
-
-
Field Detail
-
entityFactory
protected final EntityFactory entityFactory
-
-
Constructor Detail
-
MfaTrusStorageLogic
public MfaTrusStorageLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
-
Method Detail
-
search
@PreAuthorize("hasRole(\'ANONYMOUS\')") public Pair<Integer,List<MfaTrustedDevice>> search(Integer page, Integer itemsPerPage, String principal, Long id, OffsetDateTime recordDate, List<OrderByClause> orderByClauses)
-
create
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void create(String owner, MfaTrustedDevice device)
-
delete
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void delete(OffsetDateTime expirationDate, String recordKey)
-
-