Package org.apache.syncope.core.logic.wa
Class U2FRegistrationLogic
- 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.U2FRegistrationLogic
-
public class U2FRegistrationLogic 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 U2FRegistrationLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
create(String owner, U2FDevice device)
void
delete(Long id, OffsetDateTime expirationDate)
Pair<Integer,List<U2FDevice>>
search(Integer page, Integer itemsPerPage, Long id, OffsetDateTime expirationDate, 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
-
U2FRegistrationLogic
public U2FRegistrationLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
-
Method Detail
-
create
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void create(String owner, U2FDevice device)
-
delete
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void delete(Long id, OffsetDateTime expirationDate)
-
search
@PreAuthorize("hasRole(\'ANONYMOUS\')") public Pair<Integer,List<U2FDevice>> search(Integer page, Integer itemsPerPage, Long id, OffsetDateTime expirationDate, List<OrderByClause> orderByClauses)
-
-