Class GoogleMfaAuthTokenServiceImpl
- java.lang.Object
-
- org.apache.syncope.core.rest.cxf.service.AbstractService
-
- org.apache.syncope.core.rest.cxf.service.wa.GoogleMfaAuthTokenServiceImpl
-
- All Implemented Interfaces:
JAXRSService,GoogleMfaAuthTokenService
@Service public class GoogleMfaAuthTokenServiceImpl extends AbstractService implements GoogleMfaAuthTokenService
-
-
Field Summary
Fields Modifier and Type Field Description protected GoogleMfaAuthTokenLogiclogic-
Fields inherited from class org.apache.syncope.core.rest.cxf.service.AbstractService
LOG, messageContext, OPTIONS_ALLOW, searchContext, uriInfo
-
Fields inherited from interface org.apache.syncope.common.rest.api.service.JAXRSService
CRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_KEYWORD, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RECURSIVE, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
-
-
Constructor Summary
Constructors Constructor Description GoogleMfaAuthTokenServiceImpl(GoogleMfaAuthTokenLogic logic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(int otp)voiddelete(String owner)voiddelete(String owner, int otp)voiddelete(LocalDateTime expirationDate)PagedResult<GoogleMfaAuthToken>list()PagedResult<GoogleMfaAuthToken>read(String owner)GoogleMfaAuthTokenread(String owner, int otp)voidstore(String owner, GoogleMfaAuthToken token)-
Methods inherited from class org.apache.syncope.core.rest.cxf.service.AbstractService
applyPreference, buildPagedResult, checkETag, createResponse, findActualKey, getOrderByClauses, getPreference, isNullPriorityAsync, modificationResponse
-
-
-
-
Field Detail
-
logic
protected final GoogleMfaAuthTokenLogic logic
-
-
Constructor Detail
-
GoogleMfaAuthTokenServiceImpl
public GoogleMfaAuthTokenServiceImpl(GoogleMfaAuthTokenLogic logic)
-
-
Method Detail
-
delete
public void delete(LocalDateTime expirationDate)
- Specified by:
deletein interfaceGoogleMfaAuthTokenService
-
delete
public void delete(String owner, int otp)
- Specified by:
deletein interfaceGoogleMfaAuthTokenService
-
delete
public void delete(String owner)
- Specified by:
deletein interfaceGoogleMfaAuthTokenService
-
delete
public void delete(int otp)
- Specified by:
deletein interfaceGoogleMfaAuthTokenService
-
store
public void store(String owner, GoogleMfaAuthToken token)
- Specified by:
storein interfaceGoogleMfaAuthTokenService
-
read
public GoogleMfaAuthToken read(String owner, int otp)
- Specified by:
readin interfaceGoogleMfaAuthTokenService
-
read
public PagedResult<GoogleMfaAuthToken> read(String owner)
- Specified by:
readin interfaceGoogleMfaAuthTokenService
-
list
public PagedResult<GoogleMfaAuthToken> list()
- Specified by:
listin interfaceGoogleMfaAuthTokenService
-
-