Interface UserResource
-
- All Known Implementing Classes:
UserResourceImpl
public interface UserResource- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceOptionsDtoavailableOperations(javax.ws.rs.core.UriInfo context)voiddeleteUser()UserProfileDtogetUserProfile(javax.ws.rs.core.UriInfo context)voidunlockUser()voidupdateCredentials(UserCredentialsDto account)voidupdateProfile(UserProfileDto profile)
-
-
-
Method Detail
-
deleteUser
void deleteUser()
-
unlockUser
void unlockUser()
-
getUserProfile
UserProfileDto getUserProfile(@Context javax.ws.rs.core.UriInfo context)
-
updateProfile
void updateProfile(UserProfileDto profile)
-
updateCredentials
void updateCredentials(UserCredentialsDto account)
-
availableOperations
ResourceOptionsDto availableOperations(@Context javax.ws.rs.core.UriInfo context)
-
-