Class AuthProfileSelfServiceImpl
- java.lang.Object
-
- org.apache.syncope.core.rest.cxf.service.AbstractService
-
- org.apache.syncope.core.rest.cxf.service.AuthProfileSelfServiceImpl
-
- All Implemented Interfaces:
AuthProfileSelfService
,JAXRSService
public class AuthProfileSelfServiceImpl extends AbstractService implements AuthProfileSelfService
-
-
Field Summary
Fields Modifier and Type Field Description protected AuthProfileLogic
logic
-
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 AuthProfileSelfServiceImpl(AuthProfileLogic logic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete()
Deletes the auth profile matching the user making the service call, if found.AuthProfileTO
read()
Returns the auth profile matching the user making the service call, if found.void
update(AuthProfileTO authProfileTO)
Updates the auth profile matching the user making the service call, if found.-
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 AuthProfileLogic logic
-
-
Constructor Detail
-
AuthProfileSelfServiceImpl
public AuthProfileSelfServiceImpl(AuthProfileLogic logic)
-
-
Method Detail
-
read
public AuthProfileTO read()
Description copied from interface:AuthProfileSelfService
Returns the auth profile matching the user making the service call, if found.- Specified by:
read
in interfaceAuthProfileSelfService
- Returns:
- auth profile matching the user making the service call, if found
-
update
public void update(AuthProfileTO authProfileTO)
Description copied from interface:AuthProfileSelfService
Updates the auth profile matching the user making the service call, if found.- Specified by:
update
in interfaceAuthProfileSelfService
- Parameters:
authProfileTO
- auth profile
-
delete
public void delete()
Description copied from interface:AuthProfileSelfService
Deletes the auth profile matching the user making the service call, if found.- Specified by:
delete
in interfaceAuthProfileSelfService
-
-