Package org.apache.syncope.core.logic.wa
Class WebAuthnRegistrationLogic
- 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.WebAuthnRegistrationLogic
-
public class WebAuthnRegistrationLogic 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 WebAuthnRegistrationLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
create(String owner, WebAuthnAccount account)
void
delete(String owner)
void
delete(String owner, String credentialId)
List<WebAuthnAccount>
list()
WebAuthnAccount
read(String owner)
void
update(String owner, WebAuthnAccount account)
-
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
-
WebAuthnRegistrationLogic
public WebAuthnRegistrationLogic(EntityFactory entityFactory, AuthProfileDAO authProfileDAO, AuthProfileDataBinder binder)
-
-
Method Detail
-
list
@PreAuthorize("hasRole(\'ANONYMOUS\')") @Transactional(readOnly=true) public List<WebAuthnAccount> list()
-
read
@PreAuthorize("hasRole(\'ANONYMOUS\')") @Transactional(readOnly=true) public WebAuthnAccount read(String owner)
-
delete
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void delete(String owner)
-
delete
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void delete(String owner, String credentialId)
-
create
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void create(String owner, WebAuthnAccount account)
-
update
@PreAuthorize("hasRole(\'ANONYMOUS\')") public void update(String owner, WebAuthnAccount account)
-
-